diff options
author | Jörg Mayer <jmayer@loplof.de> | 2003-12-21 03:58:29 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2003-12-21 03:58:29 +0000 |
commit | c4777bfffcdfd1f65d5c55c5ad1c4da540497ae9 (patch) | |
tree | c37424e1a487c736f2abcb147dc5ab6eb263d68f /packet-rmi.h | |
parent | 9d2915a7e6de8e2fb2f78c99a1ed561d07330631 (diff) | |
download | wireshark-c4777bfffcdfd1f65d5c55c5ad1c4da540497ae9.tar.gz wireshark-c4777bfffcdfd1f65d5c55c5ad1c4da540497ae9.tar.bz2 wireshark-c4777bfffcdfd1f65d5c55c5ad1c4da540497ae9.zip |
Compiling with -pedantic:
packet-rmi.h:67: warning: comma at end of enumerator list
svn path=/trunk/; revision=9379
Diffstat (limited to 'packet-rmi.h')
-rw-r--r-- | packet-rmi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rmi.h b/packet-rmi.h index 0d7fd7e7d2..a6f5f50e71 100644 --- a/packet-rmi.h +++ b/packet-rmi.h @@ -2,7 +2,7 @@ * header file for java rmiregistry dissection * Copyright 2002, Michael Stiller <ms@2scale.net> * - * $Id: packet-rmi.h,v 1.4 2003/02/05 06:16:32 guy Exp $ + * $Id: packet-rmi.h,v 1.5 2003/12/21 03:58:29 jmayer Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -63,7 +63,7 @@ typedef enum { RMI_OUTPUTSTREAM = 2, RMI_OUTPUTMESSAGE = 3, RMI_INPUTSTREAM = 16, - SERIALIZATION_DATA = 128, + SERIALIZATION_DATA = 128 } rmi_type; #endif |