diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2001-12-03 20:56:16 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2001-12-03 20:56:16 +0000 |
| commit | 5748d9ba6f313235f5d4628b0c141e71a51ca5ec (patch) | |
| tree | 940d4bb02fbc0730ed8e1de011f463d48ae10fcc /usr.bin/cmp/misc.c | |
| parent | 5d476e73ced081af6c5f1186b5826271112b0d70 (diff) | |
Notes
Diffstat (limited to 'usr.bin/cmp/misc.c')
| -rw-r--r-- | usr.bin/cmp/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cmp/misc.c b/usr.bin/cmp/misc.c index 686fc191f2c12..1d5db6cf44912 100644 --- a/usr.bin/cmp/misc.c +++ b/usr.bin/cmp/misc.c @@ -62,7 +62,7 @@ diffmsg(file1, file2, byte, line) off_t byte, line; { if (!sflag) - (void)printf("%s %s differ: char %qd, line %qd\n", - file1, file2, byte, line); + (void)printf("%s %s differ: char %lld, line %lld\n", + file1, file2, (long long)byte, (long long)line); exit(DIFF_EXIT); } |
