cgi-io: fix stray semicolon
authorJo-Philipp Wich <jo@mein.io>
Fri, 18 Aug 2017 12:28:33 +0000 (14:28 +0200)
committerJo-Philipp Wich <jo@mein.io>
Fri, 18 Aug 2017 12:28:33 +0000 (14:28 +0200)
commit96c658a532aed6f02e36bdbdb9bec6ad2c290c95
treeb14785c37324b164469b9b3b1790d1e37fd55901
parent504a51fba618b9f7bf46693714bb672c49fc3323
cgi-io: fix stray semicolon

Remove an improperly placed semicolon in order to solve the following
compiler error:

.../main.c:144:3: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
    if (execl("/bin/busybox", "/bin/busybox", "md5sum", file, NULL));
    ^~
    .../main.c:145:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    return NULL;
    ^~~~~~
    cc1: all warnings being treated as errors

Fixes #4723.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Makefile
src/main.c