Fix format %d errors

This commit is contained in:
Hallvard Furuseth 2005-11-14 14:36:19 +00:00
parent 8f0d3530e2
commit a1856adbe0

View File

@ -296,8 +296,8 @@ do_base( char *uri, char *host, int port, char *base, char *pass, int maxloop,
} }
end.tv_sec -= beg.tv_sec; end.tv_sec -= beg.tv_sec;
fprintf( stderr, "Done %d Binds in %d.%06d seconds.\n", i, fprintf( stderr, "Done %d Binds in %ld.%06ld seconds.\n", i,
end.tv_sec, end.tv_usec ); (long) end.tv_sec, (long) end.tv_usec );
#endif #endif
return 0; return 0;
} }