Commit 4fd4b3d6 authored by Wayne Davison's avatar Wayne Davison

Dropped a useless "const" from the definition of poptStrerror.

parent 1526b8b1
......@@ -1128,7 +1128,7 @@ const char * poptBadOption(poptContext con, int flags)
/*@=nullderef@*/
}
const char *const poptStrerror(const int error)
const char * poptStrerror(const int error)
{
switch (error) {
case POPT_ERROR_NOARG:
......
......@@ -373,7 +373,7 @@ int poptParseArgvString(const unsigned char * s,
* @return error string
*/
/*@-redecl@*/
/*@observer@*/ const char *const poptStrerror(const int error)
/*@observer@*/ const char * poptStrerror(const int error)
/*@*/;
/*@=redecl@*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment