summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2008-02-12 21:05:57 -0700
committerEric Blake <ebb9@byu.net>2008-02-12 21:05:57 -0700
commitcbfa4bf04edfd584f04ae792b06e16d6a62bfdfb (patch)
tree62d0fb6953e424ddd3dbf562e41d1af44e1714d3 /lib
parent05230b809c6fec84e0505ef1240f37b9d5b40356 (diff)
downloadgnulib-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.c2
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;