diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-05-17 23:33:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-05-17 23:33:23 +0000 |
commit | 8f53a5655cb2ccad82056ebbbab7e6ed40e5c35f (patch) | |
tree | 0c072378d8eddf255d2f1c16db913ab7feba7681 /util.c | |
parent | e902f33d18d034b5e61bc5e7889ec3982c1d98a3 (diff) | |
download | wireshark-8f53a5655cb2ccad82056ebbbab7e6ed40e5c35f.tar.gz wireshark-8f53a5655cb2ccad82056ebbbab7e6ed40e5c35f.tar.bz2 wireshark-8f53a5655cb2ccad82056ebbbab7e6ed40e5c35f.zip |
Make some routines static that aren't used outside the source file in
which they're defined.
Include some header files that declare functions in the source files
that define the functions.
Declare packet_list_get_type() in gtk/packet_list_store.h, as it defines
a macro that uses that function.
svn path=/trunk/; revision=37223
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ compute_timestamp_diff(gint *diffsec, gint *diffusec, } /* Remove any %<interface_name> from an IP address. */ -char *sanitize_filter_ip(char *hostname) { +static char *sanitize_filter_ip(char *hostname) { gchar *end; gchar *ret; |