aboutsummaryrefslogtreecommitdiffstats
path: root/epan/protobuf_lang.y
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2019-10-08 09:06:23 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2019-10-08 07:07:06 +0000
commitdbf3cdcc3f3e83f0086b2615b63a94783aca1b43 (patch)
treee39cf682d4c7e8ed336aa5cc43042fd85bd72ba6 /epan/protobuf_lang.y
parent930aa328dd57588ff5ab160bfc4f37da82ea51d0 (diff)
protobuf: Fix typo in error message
Change-Id: I0a3ef1a2c690148672aa65a8385f230e7f070e57 Reviewed-on: https://code.wireshark.org/review/34728 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/protobuf_lang.y')
-rw-r--r--epan/protobuf_lang.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/protobuf_lang.y b/epan/protobuf_lang.y
index 77fdf2f5de..78e73c8188 100644
--- a/epan/protobuf_lang.y
+++ b/epan/protobuf_lang.y
@@ -515,9 +515,9 @@ protobuf_langerror(void* yyscanner, protobuf_lang_state_t *state, const char *ms
lineno = yyscanner ? protobuf_langget_lineno(yyscanner) : -1;
if (lineno > -1) {
- error_cb("Protobuf: Parsing file [%s:%d] faield: %s\n", filepath, lineno, msg);
+ error_cb("Protobuf: Parsing file [%s:%d] failed: %s\n", filepath, lineno, msg);
} else {
- error_cb("Protobuf: Parsing file [%s] faield: %s\n", filepath, msg);
+ error_cb("Protobuf: Parsing file [%s] failed: %s\n", filepath, msg);
}
}