diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-08-10 07:54:07 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-08-10 07:54:07 +0000 |
commit | 3f14fd3d7e5b9dc6098bcb60ccaa6b5798a37591 (patch) | |
tree | 78f3dacc85004584746c1541c3d5a84397ee5ce8 /file.h | |
parent | 16e3dd2e48cf5fd7155a398ac20ace9efe57580f (diff) | |
download | wireshark-3f14fd3d7e5b9dc6098bcb60ccaa6b5798a37591.tar.gz wireshark-3f14fd3d7e5b9dc6098bcb60ccaa6b5798a37591.tar.bz2 wireshark-3f14fd3d7e5b9dc6098bcb60ccaa6b5798a37591.zip |
More whitespace fixups, and fix a typo in a comment.
svn path=/trunk/; revision=463
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.29 1999/08/10 07:52:54 guy Exp $ + * $Id: file.h,v 1.30 1999/08/10 07:54:07 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -72,7 +72,7 @@ typedef struct _capture_file { #endif /* XXX - I'm cheating for now. I'll hardcode 65536 here until I re-arrange * more header files so that ethereal.h is split up into two files, a - * generic header and a gtk+-speficic header (or the gtk+ definitions are + * generic header and a gtk+-specific header (or the gtk+ definitions are * moved to different header files) --gilbert */ /*guint8 pd[MAX_PACKET_SIZE];*/ /* Packet data */ @@ -80,8 +80,8 @@ typedef struct _capture_file { frame_data *plist; /* Packet list */ frame_data *plist_end; /* Last packet in list */ column_info cinfo; /* Column formatting information */ - int selected_packet; /* Index in packet list of currently selected packet, if any */ - int selected_row; /* Row in packet display of currently selected packet, if any */ + int selected_packet; /* Index in packet list of currently selected packet, if any */ + int selected_row; /* Row in packet display of currently selected packet, if any */ frame_data *fd; /* Frame data for currently selected packet */ proto_tree *protocol_tree; /* Protocol tree for currently selected packet */ FILE *print_fh; /* File we're printing to */ |