diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-06-18 23:47:50 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-06-18 23:47:50 +0000 |
commit | 953d1bfd723648d89293f2f32106364fd98bbf8d (patch) | |
tree | b5905ac17e51e32cd35a8bfed4b54b84b0906bdb /wiretap/cosine.c | |
parent | 81b9276b24c98f393c71d2f939a7e0efa2993262 (diff) | |
download | wireshark-953d1bfd723648d89293f2f32106364fd98bbf8d.tar.gz wireshark-953d1bfd723648d89293f2f32106364fd98bbf8d.tar.bz2 wireshark-953d1bfd723648d89293f2f32106364fd98bbf8d.zip |
Slight stylistic cleanup - most routines, when defined, have no space
between the routine name and the opening parenthesis, so remove it from
the definition of the seek-read routine.
svn path=/trunk/; revision=50026
Diffstat (limited to 'wiretap/cosine.c')
-rw-r--r-- | wiretap/cosine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/cosine.c b/wiretap/cosine.c index 48fdb5b788..df41707dcb 100644 --- a/wiretap/cosine.c +++ b/wiretap/cosine.c @@ -314,7 +314,7 @@ static gboolean cosine_read(wtap *wth, int *err, gchar **err_info, /* Used to read packets in random-access fashion */ static gboolean -cosine_seek_read (wtap *wth, gint64 seek_off, struct wtap_pkthdr *phdr, +cosine_seek_read(wtap *wth, gint64 seek_off, struct wtap_pkthdr *phdr, Buffer *buf, int len _U_, int *err, gchar **err_info) { int pkt_len; |