Module Name: src
Committed By: mrg
Date: Sun Mar 13 07:40:45 UTC 2011
Modified Files:
src/lib/libc/gen: unvis.c
Log Message:
cast "~0" to (size_t) when passing to a size_t taking function.
fixes lint build errors.
To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/lib/libc/gen/unvis.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/gen/unvis.c
diff -u src/lib/libc/gen/unvis.c:1.34 src/lib/libc/gen/unvis.c:1.35
--- src/lib/libc/gen/unvis.c:1.34 Sat Mar 12 19:52:48 2011
+++ src/lib/libc/gen/unvis.c Sun Mar 13 07:40:44 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: unvis.c,v 1.34 2011/03/12 19:52:48 christos Exp $ */
+/* $NetBSD: unvis.c,v 1.35 2011/03/13 07:40:44 mrg Exp $ */
/*-
* Copyright (c) 1989, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: unvis.c,v 1.34 2011/03/12 19:52:48 christos Exp $");
+__RCSID("$NetBSD: unvis.c,v 1.35 2011/03/13 07:40:44 mrg Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -528,13 +528,13 @@
int
strunvisx(char *dst, const char *src, int flag)
{
- return strnunvisx(dst, ~0, src, flag);
+ return strnunvisx(dst, (size_t)~0, src, flag);
}
int
strunvis(char *dst, const char *src)
{
- return strnunvisx(dst, ~0, src, 0);
+ return strnunvisx(dst, (size_t)~0, src, 0);
}
int