aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/packet_history.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-10-12 17:39:44 +0000
committerBill Meier <wmeier@newsguy.com>2010-10-12 17:39:44 +0000
commit2b0f6a63f1585db5d0285728e92e946d6cbb58a5 (patch)
treef36cc05ac6a51fb11b9eb2a22b5e59b7170c4b3b /gtk/packet_history.c
parent2d3abb5cec7bce8618304c2d57b768e95324a8e1 (diff)
Define some fcns & vars as static;
Rename g_capture_in_progress to gbl_capture_in_progress (capture_if_dlg.c) Do some whitespace cleanup. svn path=/trunk/; revision=34490
Diffstat (limited to 'gtk/packet_history.c')
-rw-r--r--gtk/packet_history.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/packet_history.c b/gtk/packet_history.c
index c558fcfca1..06e60b1c0f 100644
--- a/gtk/packet_history.c
+++ b/gtk/packet_history.c
@@ -37,9 +37,9 @@
#include "gtk/packet_history.h"
-GList *history_current = NULL;
-GList *history_list = NULL;
-gboolean ignore_jump = FALSE;
+static GList *history_current = NULL;
+static GList *history_list = NULL;
+static gboolean ignore_jump = FALSE;
#if 0
@@ -123,7 +123,7 @@ void packet_history_add(gint row) {
void packet_history_clear(void) {
-
+
/* clear "old" list */
clear_list(history_list);
history_current = NULL;