ObjFW  Diff

Differences From Artifact [4de08470c1]:

To Artifact [88ef3a2c1c]:


357
358
359
360
361
362
363
364

365
366
367
368
369

370
371
372
373
374
375
376
357
358
359
360
361
362
363

364
365
366
367
368

369
370
371
372
373
374
375
376







-
+




-
+







	[element addAttributeWithName: @"class"
			  stringValue: [self className]];

	[element addChild:
	    [OFXMLElement elementWithName: @"seconds"
				namespace: OF_SERIALIZATION_NS
			      stringValue: [OFString stringWithFormat:
					       @"%" PRId64, seconds]]];
					       @"%" @PRId64, seconds]]];
	[element addChild:
	    [OFXMLElement elementWithName: @"microseconds"
				namespace: OF_SERIALIZATION_NS
			      stringValue: [OFString stringWithFormat:
					       @"%" PRIu32, microseconds]]];
					       @"%" @PRIu32, microseconds]]];

	[pool release];

	return element;
}

- (uint32_t)microsecond