diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-03-01 13:55:20 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-03-13 13:58:45 +0100 |
commit | d64e130aa333837a8fda0f1bba51f2867ca520f7 (patch) | |
tree | a9f9f20bfdf69b8076d06c64f54e00555239daa5 /test | |
parent | ef74268b47fae1afd302a4a524b53143cbfd6ce1 (diff) |
warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
Reported-By: gcc -Wignored-qualifiers
Git-Dch: Ignore
Diffstat (limited to 'test')
-rw-r--r-- | test/interactive-helper/aptwebserver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/interactive-helper/aptwebserver.cc b/test/interactive-helper/aptwebserver.cc index 7ed984fa9..fb9f7d34e 100644 --- a/test/interactive-helper/aptwebserver.cc +++ b/test/interactive-helper/aptwebserver.cc @@ -23,7 +23,7 @@ #include <dirent.h> #include <signal.h> -static char const * const httpcodeToStr(int const httpcode) /*{{{*/ +static char const * httpcodeToStr(int const httpcode) /*{{{*/ { switch (httpcode) { |