From c6af1bfdd469de2226235ce79eccd994a4625368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Thu, 7 Feb 2008 12:14:40 +0000 Subject: Removed some "statement not reached" warnings. svn path=/trunk/; revision=24282 --- epan/ftypes/ftype-string.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'epan/ftypes/ftype-string.c') diff --git a/epan/ftypes/ftype-string.c b/epan/ftypes/ftype-string.c index e7fd24ad50..c355ce856d 100644 --- a/epan/ftypes/ftype-string.c +++ b/epan/ftypes/ftype-string.c @@ -177,11 +177,9 @@ val_from_unparsed(fvalue_t *fv, char *s, gboolean allow_partial_value _U_, LogFu FVALUE_FREE(fv_bytes); return TRUE; } - else { - /* Just turn it into a string */ - return val_from_string(fv, s, logfunc); - } - g_assert_not_reached(); + + /* Just turn it into a string */ + return val_from_string(fv, s, logfunc); } static guint -- cgit v1.2.3