Use the get.*guint32() routines to get guint32s.

Change-Id: Ie3b451549a29970a5e3204b449f198aa1c82de5b
Reviewed-on: https://code.wireshark.org/review/17650
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2016-09-11 13:32:02 -07:00
parent 4f46d9da9c
commit 4abf452b19
1 changed files with 2 additions and 2 deletions

View File

@ -1192,11 +1192,11 @@ main(int argc, char *argv[])
break;
case 'i': /* break capture file based on time interval */
secs_per_block = get_positive_int(optarg, "time interval");
secs_per_block = get_nonzero_guint32(optarg, "time interval");
break;
case 'I': /* ignored_bytes at the beginning of the frame for duplications removal */
ignored_bytes = get_positive_int(optarg, "number of bytes to ignore");
ignored_bytes = get_guint32(optarg, "number of bytes to ignore");
break;
case 'L':