summaryrefslogtreecommitdiff
path: root/wiretap/nettl.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-10-07 00:39:54 -0700
committerGuy Harris <guy@alum.mit.edu>2014-10-07 07:40:27 +0000
commit05d34b3ca1efb7d7061346402ce4487c887e6db3 (patch)
treeeea8fca5c706dc2bc7b0a8572c215a07f6977a85 /wiretap/nettl.c
parent3f101f2b3f58cd1a0a1f9658c65a4e1d76a452e3 (diff)
downloadwireshark-05d34b3ca1efb7d7061346402ce4487c887e6db3.tar.gz
Clean up white space.
Change-Id: I73f2406483c13c7917faed46db6fc1f5e2bc8fcd Reviewed-on: https://code.wireshark.org/review/4517 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/nettl.c')
-rw-r--r--wiretap/nettl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wiretap/nettl.c b/wiretap/nettl.c
index 89cd82a883..1752225278 100644
--- a/wiretap/nettl.c
+++ b/wiretap/nettl.c
@@ -209,7 +209,7 @@ int nettl_open(wtap *wth, int *err, gchar **err_info)
/* Read the rest of the file header */
if (!wtap_read_bytes(wth->fh, file_hdr.file_name, FILE_HDR_SIZE - MAGIC_SIZE,
- err, err_info))
+ err, err_info))
return -1;
/* This is an nettl file */
@@ -343,7 +343,7 @@ nettl_read_rec(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr, Buffer *buf,
errno = WTAP_ERR_CANT_READ;
if (!wtap_read_bytes_or_eof(fh, &rec_hdr.hdr_len, sizeof rec_hdr.hdr_len,
- err, err_info))
+ err, err_info))
return FALSE;
hdr_len = g_ntohs(rec_hdr.hdr_len);
if (hdr_len < NETTL_REC_HDR_LEN) {
@@ -353,7 +353,7 @@ nettl_read_rec(wtap *wth, FILE_T fh, struct wtap_pkthdr *phdr, Buffer *buf,
return FALSE;
}
if (!wtap_read_bytes(fh, &rec_hdr.subsys, NETTL_REC_HDR_LEN - 2,
- err, err_info))
+ err, err_info))
return FALSE;
subsys = g_ntohs(rec_hdr.subsys);
hdr_len -= NETTL_REC_HDR_LEN;