epan: remove return from functions returning void.

Found by clang-tidy.

Change-Id: Ibedfec5e5d3eca7c2e65319b7ecb4dcbe974b88b
Reviewed-on: https://code.wireshark.org/review/31337
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2019-01-03 17:45:02 +01:00 committed by Anders Broman
parent 1db84c9330
commit 9aa63d2406
2 changed files with 0 additions and 3 deletions

View File

@ -108,8 +108,6 @@ color_filters_add_tmp(GSList **cfl)
g_strfreev(fg_colors);
g_strfreev(bg_colors);
return;
}
static gint

View File

@ -1140,7 +1140,6 @@ IA5_7BIT_decode(unsigned char * dest, const unsigned char* src, int len)
i += g_unichar_to_utf8(buf,&(dest[i]));
}
dest[i]=0;
return;
}
/*