From 05d34b3ca1efb7d7061346402ce4487c887e6db3 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 7 Oct 2014 00:39:54 -0700 Subject: Clean up white space. Change-Id: I73f2406483c13c7917faed46db6fc1f5e2bc8fcd Reviewed-on: https://code.wireshark.org/review/4517 Reviewed-by: Guy Harris --- wiretap/nettl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wiretap/nettl.c') 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; -- cgit v1.2.1