diff options
author | Eric Blake <ebb9@byu.net> | 2008-02-12 21:05:57 -0700 |
---|---|---|
committer | Eric Blake <ebb9@byu.net> | 2008-02-12 21:05:57 -0700 |
commit | cbfa4bf04edfd584f04ae792b06e16d6a62bfdfb (patch) | |
tree | 62d0fb6953e424ddd3dbf562e41d1af44e1714d3 /lib | |
parent | 05230b809c6fec84e0505ef1240f37b9d5b40356 (diff) | |
download | gnulib-cbfa4bf04edfd584f04ae792b06e16d6a62bfdfb.tar.gz |
Silence warning in last patch.
* lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/quotearg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index c2de86fcc2..7d0c91deef 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -202,7 +202,7 @@ static size_t quotearg_buffer_restyled (char *buffer, size_t buffersize, char const *arg, size_t argsize, enum quoting_style quoting_style, int flags, - unsigned int *quote_these_too) + unsigned int const *quote_these_too) { size_t i; size_t len = 0; |