diff options
author | jhb <jhb@FreeBSD.org> | 2000-08-03 09:14:02 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2000-08-03 09:14:02 +0000 |
commit | e165b852ded88acff34e4cb4f334647dcb33c319 (patch) | |
tree | a0d78fd9b77c781f88bf64107578f9e585421ff5 /sys/boot/common/interp_forth.c | |
parent | 1f9890b495e04d1e7d9e102fd9df269969c2885c (diff) | |
download | FreeBSD-src-e165b852ded88acff34e4cb4f334647dcb33c319.zip FreeBSD-src-e165b852ded88acff34e4cb4f334647dcb33c319.tar.gz |
Cleanup warnings. Most of these are signed/unsigned warnings, as well as
some added const's.
Diffstat (limited to 'sys/boot/common/interp_forth.c')
-rw-r--r-- | sys/boot/common/interp_forth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/interp_forth.c b/sys/boot/common/interp_forth.c index 251caf1..a77fb6c 100644 --- a/sys/boot/common/interp_forth.c +++ b/sys/boot/common/interp_forth.c @@ -64,7 +64,7 @@ static void bf_command(FICL_VM *vm) { char *name, *line, *tail, *cp; - int len; + size_t len; struct bootblk_command **cmdp; bootblk_cmd_t *cmd; int nstrings, i; |