aboutsummaryrefslogtreecommitdiffstats
path: root/man5
diff options
context:
space:
mode:
Diffstat (limited to 'man5')
-rw-r--r--man5/core.54
1 files changed, 2 insertions, 2 deletions
diff --git a/man5/core.5 b/man5/core.5
index 04e34bbf9f..4df94d3c13 100644
--- a/man5/core.5
+++ b/man5/core.5
@@ -652,8 +652,8 @@ main(int argc, char *argv[])
pipe program. */
fprintf(fp, "argc=%d\en", argc);
- for (int j = 0; j < argc; j++)
- fprintf(fp, "argc[%d]=<%s>\en", j, argv[j]);
+ for (size_t j = 0; j < argc; j++)
+ fprintf(fp, "argc[%zu]=<%s>\en", j, argv[j]);
/* Count bytes in standard input (the core dump). */