summaryrefslogtreecommitdiff
path: root/epan/uat_load.l
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-08-21 13:00:56 -0400
committerBill Meier <wmeier@newsguy.com>2014-08-21 17:19:14 +0000
commit45a7b6c8589ca804888efe618a28c3844b982c7b (patch)
tree83a61b719de3017b770ec3fce517276f8cdf7105 /epan/uat_load.l
parent14605754afc3dd0da0ef2da1c534cb4d77cc2d9e (diff)
downloadwireshark-45a7b6c8589ca804888efe618a28c3844b982c7b.tar.gz
uat_load.l: Fix "unreachable code" warning (Windows 4702)
Change-Id: I0f50bc9f1970578a7a2a44a8a3149173f5935f14 Reviewed-on: https://code.wireshark.org/review/3775 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/uat_load.l')
-rw-r--r--epan/uat_load.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/uat_load.l b/epan/uat_load.l
index 2f1c41b997..5bc878bcde 100644
--- a/epan/uat_load.l
+++ b/epan/uat_load.l
@@ -278,7 +278,7 @@ comment #[^\n]*\n
<ERRORED>{newline} { linenum++; BEGIN START_OF_LINE; }
<ERRORED>. ;
-{newline} { linenum++; ERROR(("incomplete record")); BEGIN START_OF_LINE; }
+{newline} { linenum++; ERROR(("incomplete record")); }
. { ERROR(("unexpected input")); }
%%