diff options
author | Guy Harris <guy@alum.mit.edu> | 2011-04-11 00:01:08 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2011-04-11 00:01:08 +0000 |
commit | 4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91 (patch) | |
tree | cb631a4e1881ed6ce2880d3e29c019f1a69a7604 /clopts_common.h | |
parent | f10a13b748bdafd13ab887437c04d04d325d2ca6 (diff) | |
download | wireshark-4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91.tar.gz wireshark-4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91.tar.bz2 wireshark-4ad4d3e6784695420c7e511ed7eaa5c0e49f0e91.zip |
Jeff Morris's change to make the autostop file size 64-bit. Fixes bug
5691.
svn path=/trunk/; revision=36551
Diffstat (limited to 'clopts_common.h')
-rw-r--r-- | clopts_common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clopts_common.h b/clopts_common.h index 3341fd0519..9077ead647 100644 --- a/clopts_common.h +++ b/clopts_common.h @@ -30,9 +30,11 @@ extern "C" { #endif /* __cplusplus */ int get_natural_int(const char *string, const char *name); - int get_positive_int(const char *string, const char *name); +gint64 get_natural_int64(const char *string, const char *name); +gint64 get_positive_int64(const char *string, const char *name); + #ifdef __cplusplus } #endif /* __cplusplus */ |