Move some arguments up a line.
authorGuy Harris <guy@alum.mit.edu>
Thu, 18 Oct 2012 21:54:47 +0000 (21:54 -0000)
committerGuy Harris <guy@alum.mit.edu>
Thu, 18 Oct 2012 21:54:47 +0000 (21:54 -0000)
svn path=/trunk/; revision=45649

wiretap/nettl.c

index 2d24815f8f8be96d6492e4a7826e4d9d60dc7e3e..e7c9dd1955b4da02849ca273bba291c87712008f 100644 (file)
@@ -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) {