aboutsummaryrefslogtreecommitdiffstats
path: root/tc/tc.c
diff options
context:
space:
mode:
authorshemminger <shemminger>2005-07-05 22:37:15 +0000
committershemminger <shemminger>2005-07-05 22:37:15 +0000
commitf332d169246447bd5e258ac03d5ee840a70adb1e (patch)
tree93df4b6d05935419294e21057ef9afef561a414d /tc/tc.c
parent52d5ac3fcb616d3e1979fb91c12213aa2a5bf75e (diff)
downloadplatform_external_iproute2-f332d169246447bd5e258ac03d5ee840a70adb1e.tar.gz
platform_external_iproute2-f332d169246447bd5e258ac03d5ee840a70adb1e.tar.bz2
platform_external_iproute2-f332d169246447bd5e258ac03d5ee840a70adb1e.zip
Cleanup GCC4 warnings about signedness.
Diffstat (limited to 'tc/tc.c')
-rw-r--r--tc/tc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tc/tc.c b/tc/tc.c
index 31e9fa30..f122143c 100644
--- a/tc/tc.c
+++ b/tc/tc.c
@@ -244,7 +244,7 @@ static size_t getcmdline(char **linep, size_t *lenp, FILE *in)
while ((cp = strstr(*linep, "\\\n")) != NULL) {
char *line1 = NULL;
- ssize_t len1 = 0;
+ size_t len1 = 0;
size_t cc1;
if ((cc1 = getline(&line1, &len1, in)) < 0) {