2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00
This commit is contained in:
Todd C. Miller
2003-03-13 17:00:51 +00:00
parent 5b40c964de
commit 006e64f61e

2
configure vendored
View File

@@ -9102,7 +9102,7 @@ main() {
if ((f = fopen("conftestdata", "w")) == NULL)
exit(1);
(void) sprintf(b, "%u", u);
(void) sprintf(b, "%lu", (unsigned long) u);
(void) fprintf(f, "%d\n", strlen(b));
(void) fclose(f);
exit(0);