diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-06-18 02:18:27 +0000 |
commit | 84123931970a8a0f1af281e7351eadabba3c0908 (patch) | |
tree | 90c18fd2b2f7ddb3e9eac08059e59c3e0068f743 /packet-mpeg1.c | |
parent | b9222c0011e362d2ba9895af4eaef04a3d72c8c6 (diff) | |
download | wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.gz wireshark-84123931970a8a0f1af281e7351eadabba3c0908.tar.bz2 wireshark-84123931970a8a0f1af281e7351eadabba3c0908.zip |
From Joerg Mayer: explicitly fill in all members of a
"header_field_info" structure, including the ones that are later set by
the routines to register fields.
svn path=/trunk/; revision=3561
Diffstat (limited to 'packet-mpeg1.c')
-rw-r--r-- | packet-mpeg1.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/packet-mpeg1.c b/packet-mpeg1.c index e9cf500bd0..6a8187936c 100644 --- a/packet-mpeg1.c +++ b/packet-mpeg1.c @@ -2,7 +2,7 @@ * * Routines for RFC 2250 MPEG-1 dissection * - * $Id: packet-mpeg1.c,v 1.1 2001/06/14 09:25:23 guy Exp $ + * $Id: packet-mpeg1.c,v 1.2 2001/06/18 02:17:49 guy Exp $ * * Copyright 2001, * Francisco Javier Cabello Torres, <fjcabello@vtools.es> @@ -211,7 +211,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, { @@ -223,7 +223,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, { @@ -235,7 +235,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, { @@ -247,7 +247,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -260,7 +260,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -273,7 +273,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -286,7 +286,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -299,7 +299,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -312,7 +312,7 @@ proto_register_mpeg1(void) BASE_DEC, VALS(rtp_mpg_picture_types_vals), 0x0, - "" + "", HFILL } }, @@ -325,7 +325,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -338,7 +338,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, { @@ -350,7 +350,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, @@ -363,7 +363,7 @@ proto_register_mpeg1(void) BASE_DEC, NULL, 0x0, - "" + "", HFILL } }, { @@ -375,7 +375,7 @@ proto_register_mpeg1(void) BASE_NONE, NULL, 0x0, - "" + "", HFILL } }, |