1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-29 15:13:01 +04:00

fix floating point specifier and clean up a warning

This commit is contained in:
Lee Thomason (grinliz)
2013-05-11 20:23:13 -07:00
parent f76fe94012
commit d6bd7360b8
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -301,9 +301,9 @@ int main( int argc, const char ** argv )
printf( "Test file '%s' loaded. ErrorID=%d\n", argv[1], errorID );
if ( !errorID ) {
printf( "Load time=%d\n", loadTime - startTime );
printf( "Delete time=%d\n", deleteTime - loadTime );
printf( "Total time=%d\n", deleteTime - startTime );
printf( "Load time=%u\n", (unsigned)(loadTime - startTime) );
printf( "Delete time=%u\n", (unsigned)(deleteTime - loadTime) );
printf( "Total time=%u\n", (unsigned)(deleteTime - startTime) );
}
exit(0);
}