diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-01 07:03:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-01 07:03:16 +0000 |
commit | 32acfd66d0bcc47044b0b2b1846f4204ea2da5af (patch) | |
tree | 220b367f6b35181fa14ca56fef453cc4fd673f57 /lib | |
parent | dd16dfb3e37b3af112ca1ccfbf16c096c13b84c3 (diff) | |
download | coreutils-32acfd66d0bcc47044b0b2b1846f4204ea2da5af.tar.xz |
(quotearg_n_options): Make `options' parameter be `const'.
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 a0863606b..baf28c610 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -307,7 +307,7 @@ quotearg_buffer (char *buffer, size_t buffersize, N must be nonnegative. */ static char * quotearg_n_options (unsigned int n, char const *arg, - struct quoting_options *options) + struct quoting_options const *options) { static unsigned int nslots; static struct slotvec |