diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-07 09:38:37 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-17 11:40:24 +0200 |
commit | adf20c0c4d9f488d55254f54a79079b9cacbde8d (patch) | |
tree | ccaaabb111532bf270df87a8a960dd8271481103 /fish/fish.c | |
parent | 2ad9dbbe595b5311019376a55b13db0d7c5d8988 (diff) | |
download | libguestfs-adf20c0c4d9f488d55254f54a79079b9cacbde8d.tar.gz libguestfs-adf20c0c4d9f488d55254f54a79079b9cacbde8d.tar.xz libguestfs-adf20c0c4d9f488d55254f54a79079b9cacbde8d.zip |
adjust const "**" pointers to avoid warnings
Also, ...
* src/generator.ml: Add DeviceList type, and propagate that change
out to all calling/interface code.
Diffstat (limited to 'fish/fish.c')
-rw-r--r-- | fish/fish.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fish/fish.c b/fish/fish.c index f31f4ad3..830617b1 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -974,7 +974,7 @@ free_strings (char **argv) } int -count_strings (char * const * const argv) +count_strings (char *const *argv) { int c; @@ -984,7 +984,7 @@ count_strings (char * const * const argv) } void -print_strings (char * const * const argv) +print_strings (char *const *argv) { int argc; @@ -993,7 +993,7 @@ print_strings (char * const * const argv) } void -print_table (char * const * const argv) +print_table (char *const *argv) { int i; |