aboutsummaryrefslogtreecommitdiffstats
path: root/airpcap_loader.c
diff options
context:
space:
mode:
authortuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2011-09-24 16:26:49 +0000
committertuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2011-09-24 16:26:49 +0000
commitb01722ae4d8fffc79f177ea5c1220bee5ed87d52 (patch)
tree513fc0ad0b9ac6b5e4a71d162c2fc83b0efee6b1 /airpcap_loader.c
parenta0b85e63005416c7a739b4e959f4d24ec42d0028 (diff)
Fix syntax...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39124 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'airpcap_loader.c')
-rw-r--r--airpcap_loader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/airpcap_loader.c b/airpcap_loader.c
index c6fac9b3fe..17241dc98a 100644
--- a/airpcap_loader.c
+++ b/airpcap_loader.c
@@ -1458,7 +1458,7 @@ airpcap_if_info_t* get_airpcap_if_from_name(GList* if_list, const gchar* name)
for (curr = g_list_first(if_list); curr; curr = g_list_next(curr)) {
if_info = (airpcap_if_info_t *)curr->data;
- if (if_info && (g_ascii_strcasecmp(if_info->name, name) == 0) {
+ if (if_info && (g_ascii_strcasecmp(if_info->name, name) == 0)) {
return (if_info);
}
}