mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Fix format %d errors
This commit is contained in:
parent
8f0d3530e2
commit
a1856adbe0
1 changed files with 2 additions and 2 deletions
|
|
@ -296,8 +296,8 @@ do_base( char *uri, char *host, int port, char *base, char *pass, int maxloop,
|
|||
}
|
||||
end.tv_sec -= beg.tv_sec;
|
||||
|
||||
fprintf( stderr, "Done %d Binds in %d.%06d seconds.\n", i,
|
||||
end.tv_sec, end.tv_usec );
|
||||
fprintf( stderr, "Done %d Binds in %ld.%06ld seconds.\n", i,
|
||||
(long) end.tv_sec, (long) end.tv_usec );
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue