aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-06-30 05:29:57 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-06-30 05:29:57 +0000
commit41faa1a791a409a7029e1ff3ef6e8043f6794c38 (patch)
tree857a1b5d3141c81d37f29fb34be5e799dc79dcd6
parent1b0a8621e67c62c97e92f4d7aa8908d3ed04743e (diff)
downloadsrc-41faa1a791a409a7029e1ff3ef6e8043f6794c38.tar.gz
src-41faa1a791a409a7029e1ff3ef6e8043f6794c38.zip
Silence a warning on the Alpha.
Notes
Notes: svn path=/head/; revision=79009
-rw-r--r--usr.bin/strip/strip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/strip/strip.c b/usr.bin/strip/strip.c
index 03ba76c6baac..3c41feb92b8c 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;