aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stat_cmd_args.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-01-12 19:16:15 +0000
committerGerald Combs <gerald@wireshark.org>2012-01-12 19:16:15 +0000
commitf6ffb03ccbb2202d4a789aef955d4401692e546d (patch)
treed37427612f727e4e98a57be47e6d5be8a7e444d2 /epan/stat_cmd_args.c
parentdc96e5fee266a3c27110a8ee1b347ff4833102ce (diff)
CMakeLists.txt: Make sure TSHARK_TAP_SRC is defined before
register_tap_files so that the "-z" flag works for TShark. epan/stat_cmd_args.c: Fixup whitespace. svn path=/trunk/; revision=40443
Diffstat (limited to 'epan/stat_cmd_args.c')
-rw-r--r--epan/stat_cmd_args.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/stat_cmd_args.c b/epan/stat_cmd_args.c
index 07848d4ea2..b2e23df920 100644
--- a/epan/stat_cmd_args.c
+++ b/epan/stat_cmd_args.c
@@ -6,17 +6,17 @@
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
- *
+ *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@@ -72,7 +72,7 @@ register_stat_cmd_arg(const char *cmd, void (*func)(const char*, void*),void* us
newsca=g_malloc(sizeof(stat_cmd_arg));
newsca->cmd=cmd;
newsca->func=func;
- newsca->userdata=userdata;
+ newsca->userdata=userdata;
stat_cmd_arg_list=g_slist_insert_sorted(stat_cmd_arg_list, newsca,
sort_by_name);
}