Fix clang compiler errors
authorPetr Štetiar <ynezz@true.cz>
Sun, 11 Oct 2020 09:04:05 +0000 (11:04 +0200)
committerPetr Štetiar <ynezz@true.cz>
Tue, 27 Oct 2020 22:03:04 +0000 (23:03 +0100)
commita0ed2c9a7a725781f8d3d5cb3524665273f0dd68
treec054cf4a2f8106f2cc21d08866d1b78ba05f4afb
parent232659da19a4c08c499735fa0a07abc9b3cf3c73
Fix clang compiler errors

Fixes following errors as reported by clang compilers:

 cgi-io/src/main.c:723:12: error: unused variable 'post' [-Werror,-Wunused-variable]
         autochar *post = postdecode(fields, 4);
                  ^
 cgi-io/src/main.c:814:12: error: unused variable 'post' [-Werror,-Wunused-variable]
         autochar *post = postdecode(fields, 1);
                  ^
 cgi-io/src/main.c:996:12: error: unused variable 'post' [-Werror,-Wunused-variable]
         autochar *post = postdecode(fields, 4);

Signed-off-by: Petr Štetiar <ynezz@true.cz>
main.c