X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsh-quote.c;h=4a8582ee1f99cf54366ece87bb1d39f45798b573;hb=618fd97d05ba9f1411536c887dbeebe3807c055a;hp=a35a574c990f205e505152628bc1f849d2ce13e9;hpb=1602f0afed21be664fcf5c42d59db07cc22c56d6;p=gnulib.git diff --git a/lib/sh-quote.c b/lib/sh-quote.c index a35a574c9..4a8582ee1 100644 --- a/lib/sh-quote.c +++ b/lib/sh-quote.c @@ -69,11 +69,11 @@ shell_quote (const char *string) /* Returns a freshly allocated string containing all argument strings, quoted, separated through spaces. */ char * -shell_quote_argv (char **argv) +shell_quote_argv (char * const *argv) { if (*argv != NULL) { - char **argp; + char * const *argp; size_t length; char *command; char *p;