aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/nettl.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-07-08 02:21:16 +0000
committerGuy Harris <guy@alum.mit.edu>2005-07-08 02:21:16 +0000
commit782847092387a4b32ed5cc35b957260674843d05 (patch)
treeeaa9068ab12705e0870d500c33516df298445bd9 /wiretap/nettl.c
parent897a12c3054afad4f8811c8d439746552a848c17 (diff)
Make nettl file header items containing strings "gchar", to squelch
signed vs. unsigned compiler warnings. svn path=/trunk/; revision=14873
Diffstat (limited to 'wiretap/nettl.c')
-rw-r--r--wiretap/nettl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 43b2fb9b33..22d54d5148 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -51,13 +51,13 @@ static guchar nettl_magic_hpux10[MAGIC_SIZE] = {
struct nettl_file_hdr {
guchar magic[MAGIC_SIZE];
- guchar file_name[56];
- guchar tz[20];
- guchar host_name[9];
- guchar os_vers[9];
+ gchar file_name[56];
+ gchar tz[20];
+ gchar host_name[9];
+ gchar os_vers[9];
guchar os_v;
guint8 xxa[8];
- guchar model[11];
+ gchar model[11];
guint16 unknown; /* just padding to 128 bytes? */
};