summaryrefslogtreecommitdiff
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 87ddf4a2fb..ac206b06eb 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -304,7 +304,7 @@ extern gint wtap_num_file_types;
G_STMT_START \
{ \
int _bytes_read; \
- _bytes_read = file_read((target), 1, (num_bytes), (fh)); \
+ _bytes_read = file_read((target), (num_bytes), (fh)); \
if (_bytes_read != (int) (num_bytes)) { \
*(err) = file_error((fh)); \
return FALSE; \
@@ -316,7 +316,7 @@ extern gint wtap_num_file_types;
G_STMT_START \
{ \
int _bytes_read; \
- _bytes_read = file_read((target), 1, (num_bytes), (fh)); \
+ _bytes_read = file_read((target), (num_bytes), (fh)); \
if (_bytes_read != (int) (num_bytes)) { \
*(err) = file_error((fh)); \
if (*(err) == 0 && _bytes_read > 0) { \