Differences From Artifact [0cf451e330]:
- File
src/OFDate.m
— part of check-in
[c19b2b5726]
at
2011-09-17 20:17:43
on branch trunk
— Remove +[OFThread sleepForTimeInterval:microseconds:].
Also fixes the forgotten change to double in +[sleepForTimeInterval:]
and fixes two warnings due to missing casts from double to uint32_t. (user: js, size: 11444) [annotate] [blame] [check-ins using]
To Artifact [127168a624]:
- File src/OFDate.m — part of check-in [6ec0a033bd] at 2011-09-19 11:39:15 on branch trunk — Fix calculation of microseconds. (user: js, size: 11434) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
371 372 373 374 375 376 377 | [element autorelease]; return element; } - (uint32_t)microsecond { | | | 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | [element autorelease]; return element; } - (uint32_t)microsecond { return (uint32_t)fmod(seconds * 1000000, 1000000); } - (uint8_t)second { GMTIME_RET(tm_sec) } |
︙ | ︙ |