diff options
author | dd <dd@FreeBSD.org> | 2001-06-30 05:29:57 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-30 05:29:57 +0000 |
commit | 1de613d311a5aa0dff78a8bd951d62cc2a9645f8 (patch) | |
tree | 857a1b5d3141c81d37f29fb34be5e799dc79dcd6 /usr.bin/strip | |
parent | bb25a9f669ae27abebbd69904885648268b07bc7 (diff) | |
download | FreeBSD-src-1de613d311a5aa0dff78a8bd951d62cc2a9645f8.zip FreeBSD-src-1de613d311a5aa0dff78a8bd951d62cc2a9645f8.tar.gz |
Silence a warning on the Alpha.
Diffstat (limited to 'usr.bin/strip')
-rw-r--r-- | usr.bin/strip/strip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/strip/strip.c b/usr.bin/strip/strip.c index 03ba76c..3c41feb 100644 --- a/usr.bin/strip/strip.c +++ b/usr.bin/strip/strip.c @@ -180,7 +180,7 @@ s_stab(fn, fd, ep) } /* Check size. */ - if (sb.st_size > SIZE_T_MAX) { + if (sb.st_size > (unsigned)SIZE_T_MAX) { warnx("%s: %s", fn, strerror(EFBIG)); err_val = 1; return; |