From f3b71f597c0da82217643ff8ae37354308070134 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Tue, 16 Jan 2018 12:06:33 -0800 Subject: [PATCH] Wiretap: Add a missing comma. Found via CID 1427615. Change-Id: I519b3905d33b0b2aa3ce164810b9e6358f6df1bd Reviewed-on: https://code.wireshark.org/review/25347 Reviewed-by: Gerald Combs Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann --- wiretap/wtap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiretap/wtap.c b/wiretap/wtap.c index 5b1d6fdf17..3b7021f080 100644 --- a/wiretap/wtap.c +++ b/wiretap/wtap.c @@ -1095,7 +1095,7 @@ static const char *wtap_errlist[] = { "That record type cannot be written in that format", /* WTAP_ERR_UNWRITABLE_REC_DATA */ - "That record can't be written in that format" + "That record can't be written in that format", /* WTAP_ERR_DECOMPRESSION_NOT_SUPPORTED */ "We don't support decompressing that type of compressed file",