X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f58677d123775cf4e20ef3317183e083f04a9bb7..e51094b7210fc31fa67cc218c1bd30de841a426e:/popt/popthelp.c diff --git a/popt/popthelp.c b/popt/popthelp.c index 5c800944..1ddb895c 100644 --- a/popt/popthelp.c +++ b/popt/popthelp.c @@ -191,11 +191,11 @@ static void singleOptionHelp(FILE * fp, int maxLeftCol, { int indentLength = maxLeftCol + 5; int lineLength = 79 - indentLength; - const char * help = D_(translation_domain, opt->descrip); + const unsigned char * help = D_(translation_domain, opt->descrip); const char * argDescrip = getArgDescrip(opt, translation_domain); int helpLength; - char * defs = NULL; - char * left; + unsigned char * defs = NULL; + unsigned char * left; int nb = maxLeftCol + 1; /* Make sure there's more than enough room in target buffer. */ @@ -314,7 +314,7 @@ static void singleOptionHelp(FILE * fp, int maxLeftCol, helpLength = strlen(help); while (helpLength > lineLength) { - const char * ch; + const unsigned char * ch; char format[10]; ch = help + lineLength - 1;