ObjFW  Diff

Differences From Artifact [0cf451e330]:

To Artifact [127168a624]:


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)nearbyint(remainder(seconds, 1) * 1000000);
}

- (uint8_t)second
{
	GMTIME_RET(tm_sec)
}








|







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)
}