diff options
author | Laurent Deniel <laurent.deniel@free.fr> | 1998-10-13 17:56:41 +0000 |
---|---|---|
committer | Laurent Deniel <laurent.deniel@free.fr> | 1998-10-13 17:56:41 +0000 |
commit | 23ab0b90bdafba629123e4074457641b14a24231 (patch) | |
tree | 8c108741e9178589abf8301e1bfbd6207b45c6d1 /packet-osi.c | |
parent | f2f366e7158657c4b0525a4361f9beba98bb6b27 (diff) | |
download | wireshark-23ab0b90bdafba629123e4074457641b14a24231.tar.gz wireshark-23ab0b90bdafba629123e4074457641b14a24231.tar.bz2 wireshark-23ab0b90bdafba629123e4074457641b14a24231.zip |
too few arguments for sprintf format
svn path=/trunk/; revision=49
Diffstat (limited to 'packet-osi.c')
-rw-r--r-- | packet-osi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-osi.c b/packet-osi.c index 29a046668e..b12a1b800d 100644 --- a/packet-osi.c +++ b/packet-osi.c @@ -1,7 +1,7 @@ /* packet-osi.c * Routines for ISO/OSI network and transport protocol packet disassembly * - * $Id: packet-osi.c,v 1.2 1998/09/27 22:12:34 gerald Exp $ + * $Id: packet-osi.c,v 1.3 1998/10/13 17:56:41 deniel Exp $ * Laurent Deniel <deniel@worldnet.fr> * * Ethereal - Network traffic analyzer @@ -243,7 +243,7 @@ static int osi_decode_DR(const u_char *pd, int offset, if (fd->win_info[COL_NUM]) { strcpy(fd->win_info[COL_PROTOCOL], "COTP"); - sprintf(fd->win_info[COL_INFO], "DR TPDU src-ref: 0x%04x dst-ref: 0x%04x %s", + sprintf(fd->win_info[COL_INFO], "DR TPDU src-ref: 0x%04x dst-ref: 0x%04x", src_ref, dst_ref); } |