ObjFW  Diff

Differences From Artifact [6b0927552c]:

To Artifact [2efbaabb9c]:


364
365
366
367
368
369
370
371

372
373

374
375
376
377
378
379
380
364
365
366
367
368
369
370

371
372

373
374
375
376
377
378
379
380







-
+

-
+







- (uint32_t)hash
{
	uint32_t hash;
	union {
		double d;
		uint8_t b[sizeof(double)];
	} d;
	uint8_t i;
	uint_fast8_t i;

	d.d = OF_BSWAP_DOUBLE_IF_LE(seconds);
	d.d = OF_BSWAP_DOUBLE_IF_BE(seconds);

	OF_HASH_INIT(hash);

	for (i = 0; i < sizeof(double); i++)
		OF_HASH_ADD(hash, d.b[i]);

	OF_HASH_FINALIZE(hash);