git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e3a120
)
fish: Use size_t instead of int when counting strings.
author
Richard W.M. Jones
<rjones@redhat.com>
Tue, 1 Nov 2011 09:47:01 +0000
(09:47 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Tue, 1 Nov 2011 09:47:01 +0000
(09:47 +0000)
fish/inspect.c
patch
|
blob
|
history
diff --git
a/fish/inspect.c
b/fish/inspect.c
index
2ca54d2
..
0b82ade
100644
(file)
--- a/
fish/inspect.c
+++ b/
fish/inspect.c
@@
-43,14
+43,14
@@
free_strings (char **argv)
free (argv);
}
-static
in
t
+static
size_
t
count_strings (char *const *argv)
{
-
int c
;
+
size_t i
;
- for (
c = 0; argv[c]; ++c
)
+ for (
i = 0; argv[i]; ++i
)
;
- return
c
;
+ return
i
;
}
static int