aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http-urlencoded.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-http-urlencoded.c')
-rw-r--r--epan/dissectors/packet-http-urlencoded.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-http-urlencoded.c b/epan/dissectors/packet-http-urlencoded.c
index ad35cc4298..c4fea32689 100644
--- a/epan/dissectors/packet-http-urlencoded.c
+++ b/epan/dissectors/packet-http-urlencoded.c
@@ -111,7 +111,7 @@ get_form_key_value(tvbuff_t *tvb, char **ptr, int offset, char stop)
if (ch == '%') {
guint8 ch1, ch2;
-
+
offset++;
ch1 = tvb_get_guint8(tvb, offset);
@@ -122,7 +122,7 @@ get_form_key_value(tvbuff_t *tvb, char **ptr, int offset, char stop)
} else if (ch == '+')
tmp[len] = ' ';
- else
+ else
tmp[len] = ch;
len++;