aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/http.c
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2017-12-13 08:04:51 +0100
committerLuca Deri <deri@ntop.org>2017-12-13 08:04:51 +0100
commita06c3995302981f35121ec154a718507954d4efd (patch)
treec070cdb9fa9d50393a4d956617bdd985a98c5e7d /src/lib/protocols/http.c
parentcd12a8608883f7079ff877db6b3a769860f36951 (diff)
Compilation fixes
Diffstat (limited to 'src/lib/protocols/http.c')
-rw-r--r--src/lib/protocols/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index 50eef99ed..187f2a84a 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -492,7 +492,7 @@ static struct l_string {
STATIC_STRING_L("REPORT ") };
static const char *http_fs = "CDGHOPR";
-static inline uint8_t non_ctrl(uint8_t c) {
+static uint8_t non_ctrl(uint8_t c) {
return c < 32 ? '.':c;
}