diff options
author | Jörg Mayer <jmayer@loplof.de> | 2004-01-24 16:48:12 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2004-01-24 16:48:12 +0000 |
commit | 6e59f95cebdf2d1dc748d7f1ee06264a95fee03b (patch) | |
tree | 0938206fac53aeeeca1fd6d0fcc604cc347c5fb5 /wiretap/dbs-etherwatch.c | |
parent | 65f18bb833c0259fa3705b6f3147f95354d4a101 (diff) | |
download | wireshark-6e59f95cebdf2d1dc748d7f1ee06264a95fee03b.tar.gz wireshark-6e59f95cebdf2d1dc748d7f1ee06264a95fee03b.tar.bz2 wireshark-6e59f95cebdf2d1dc748d7f1ee06264a95fee03b.zip |
Fix all fixable warnings
Move addional warnings from extra-gcc-checks to normal compilation flags
svn path=/trunk/; revision=9826
Diffstat (limited to 'wiretap/dbs-etherwatch.c')
-rw-r--r-- | wiretap/dbs-etherwatch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/dbs-etherwatch.c b/wiretap/dbs-etherwatch.c index 4d29e327fd..ad50f228b9 100644 --- a/wiretap/dbs-etherwatch.c +++ b/wiretap/dbs-etherwatch.c @@ -1,6 +1,6 @@ /* dbs-etherwatch.c * - * $Id: dbs-etherwatch.c,v 1.13 2003/12/31 01:07:09 guy Exp $ + * $Id: dbs-etherwatch.c,v 1.14 2004/01/24 16:48:12 jmayer Exp $ * * Wiretap Library * Copyright (c) 2001 by Marc Milgram <ethereal@mmilgram.NOSPAMmail.net> @@ -312,8 +312,8 @@ parse_dbs_etherwatch_packet(wtap *wth, FILE_T fh, guint8* buf, int *err) int length_pos, length_from, length; struct tm time; char mon[4]; - guchar *p; - static guchar months[] = "JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC"; + gchar *p; + static gchar months[] = "JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC"; int count, line_count; eth_hdr_len = 0; |