diff options
author | Dario Lombardo <lomato@gmail.com> | 2016-09-05 15:45:21 +0200 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2016-09-08 18:31:14 +0000 |
commit | fcb6fd3b6fcc6b3ed56cbd81c419b28920f2ec70 (patch) | |
tree | 084eac97fc793b5641d599343880cb4a18e20497 /caputils | |
parent | e09b03e9b131b3a43e4d8e43cc2c667bcb8d0a68 (diff) | |
download | wireshark-fcb6fd3b6fcc6b3ed56cbd81c419b28920f2ec70.tar.gz wireshark-fcb6fd3b6fcc6b3ed56cbd81c419b28920f2ec70.tar.bz2 wireshark-fcb6fd3b6fcc6b3ed56cbd81c419b28920f2ec70.zip |
dumpcap: change types.
Change-Id: I6520971e607623dadcb3ae392ce264bf49c621bd
Reviewed-on: https://code.wireshark.org/review/17499
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'caputils')
-rw-r--r-- | caputils/ws80211_utils.c | 4 | ||||
-rw-r--r-- | caputils/ws80211_utils.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/caputils/ws80211_utils.c b/caputils/ws80211_utils.c index 4f9a6927b6..7e63105ecf 100644 --- a/caputils/ws80211_utils.c +++ b/caputils/ws80211_utils.c @@ -769,7 +769,7 @@ nla_put_failure: } DIAG_ON_CLANG(shorten-64-to-32) -int ws80211_set_freq(const char *name, int freq, int chan_type, int _U_ center_freq, int _U_ center_freq2) +int ws80211_set_freq(const char *name, guint32 freq, int chan_type, guint32 _U_ center_freq, guint32 _U_ center_freq2) { int devidx, err; struct nl_msg *msg; @@ -1063,7 +1063,7 @@ int ws80211_get_iface_info(const char *name, struct ws80211_iface_info *iface_in return 0; } -int ws80211_set_freq(const char *name, int freq, int chan_type, int _U_ center_freq, int _U_ center_freq2) +int ws80211_set_freq(const char *name, guint32 freq, int chan_type, guint32 _U_ center_freq, guint32 _U_ center_freq2) { GList *airpcap_if_list; int err; diff --git a/caputils/ws80211_utils.h b/caputils/ws80211_utils.h index 3f58576758..247dfe2050 100644 --- a/caputils/ws80211_utils.h +++ b/caputils/ws80211_utils.h @@ -104,7 +104,7 @@ void ws80211_free_interfaces(GArray *interfaces); * @param center_freq2 The 2nd center frequency in MHz (if 80+80MHz). * @return Zero on success, nonzero on failure. */ -int ws80211_set_freq(const char *name, int freq, int chan_type, int _U_ center_freq, int _U_ center_freq2); +int ws80211_set_freq(const char *name, guint32 freq, int chan_type, guint32 _U_ center_freq, guint32 _U_ center_freq2); int ws80211_str_to_chan_type(const gchar *s); /* GTK+ only? */ const gchar *ws80211_chan_type_to_str(int type); /* GTK+ only? */ |