summaryrefslogtreecommitdiff
path: root/wiretap/nettl.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-10-18 21:54:47 +0000
committerGuy Harris <guy@alum.mit.edu>2012-10-18 21:54:47 +0000
commit11aa25f668e88a121f7e299e7137a206a40d3178 (patch)
tree293ce37a560ca8725fafee4c4ac98605aebc59dd /wiretap/nettl.c
parent97fa2f2a5f90d0414dc5341171a4abcb81c256a2 (diff)
downloadwireshark-11aa25f668e88a121f7e299e7137a206a40d3178.tar.gz
Move some arguments up a line.
svn path=/trunk/; revision=45649
Diffstat (limited to 'wiretap/nettl.c')
-rw-r--r--wiretap/nettl.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 2d24815f8f..e7c9dd1955 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -351,9 +351,8 @@ static gboolean nettl_read(wtap *wth, int *err, gchar **err_info,
}
static gboolean
-nettl_seek_read(wtap *wth, gint64 seek_off,
- struct wtap_pkthdr *phdr, guint8 *pd,
- int length, int *err, gchar **err_info)
+nettl_seek_read(wtap *wth, gint64 seek_off, struct wtap_pkthdr *phdr,
+ guint8 *pd, int length, int *err, gchar **err_info)
{
int ret;
gboolean fddihack=FALSE;
@@ -362,8 +361,8 @@ nettl_seek_read(wtap *wth, gint64 seek_off,
return FALSE;
/* Read record header. */
- ret = nettl_read_rec_header(wth, wth->random_fh, phdr,
- err, err_info, &fddihack);
+ ret = nettl_read_rec_header(wth, wth->random_fh, phdr, err, err_info,
+ &fddihack);
if (ret <= 0) {
/* Read error or EOF */
if (ret == 0) {