mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Fix format %d errors
This commit is contained in:
parent
8f0d3530e2
commit
a1856adbe0
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user