diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-02-05 02:38:56 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:24:19 -0700 |
commit | 1134a81b98e189a8ec99a1ea4aba8e52b358873b (patch) | |
tree | 9ea0bce0558d588bf0b6d0ddc3e8464f51744523 /namedev_parse.c | |
parent | 9172c95c77e8f1377b6c8becc84995e6e28a61eb (diff) |
[PATCH] fix -Wsign-compare warnings
Diffstat (limited to 'namedev_parse.c')
-rw-r--r-- | namedev_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/namedev_parse.c b/namedev_parse.c index 3b14a6a500..5bd59d83f2 100644 --- a/namedev_parse.c +++ b/namedev_parse.c @@ -126,7 +126,7 @@ static int namedev_parse(const char *filename, void *data) cur = 0; lineno = 0; while (cur < bufsize) { - int i, j; + unsigned int i, j; count = buf_get_line(buf, bufsize, cur); bufline = &buf[cur]; |