diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-23 23:43:32 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-23 23:43:32 +0000 |
commit | 2cf14082d633ccb8c2ffc58313e86ced29282632 (patch) | |
tree | 4234c7e1894551ffb253cd13e6d3d0e093cb0cae /print.c | |
parent | cd6fe13358746d1cc07da711219d46d3b04be4f8 (diff) | |
download | wireshark-2cf14082d633ccb8c2ffc58313e86ced29282632.tar.gz wireshark-2cf14082d633ccb8c2ffc58313e86ced29282632.tar.bz2 wireshark-2cf14082d633ccb8c2ffc58313e86ced29282632.zip |
Fix up a comment.
svn path=/trunk/; revision=5748
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,7 +1,7 @@ /* print.c * Routines for printing packet analysis trees. * - * $Id: print.c,v 1.53 2002/06/22 22:31:29 guy Exp $ + * $Id: print.c,v 1.54 2002/06/23 23:43:32 guy Exp $ * * Gilbert Ramirez <gram@alumni.rice.edu> * @@ -295,10 +295,9 @@ print_hex_data_buffer(FILE *fh, register const u_char *cp, print_line(fh, format, ""); /* - * How many of the leading bits of the offset will we supply? - * We always supply at least 4 digits, i.e. 16 bits, but if - * the maximum offset won't fit in 4 digits, we use as many - * digits as will be needed. + * How many of the leading digits of the offset will we supply? + * We always supply at least 4 digits, but if the maximum offset + * won't fit in 4 digits, we use as many digits as will be needed. */ if (((length - 1) & 0xF0000000) != 0) use_digits = 8; /* need all 8 digits */ |