aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/packet_history.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-02 04:47:15 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-02 04:47:15 +0000
commite9ea42eed9f4551267f70a662fce7f470ae2b51e (patch)
tree498b25b9405aa928f440291784cb7c8bacdb73ce /gtk/packet_history.c
parent5e83d1e0157469014a1a773ecf10aaff87194518 (diff)
Fix more "no previous declaration" warnings
svn path=/trunk/; revision=15173
Diffstat (limited to 'gtk/packet_history.c')
-rw-r--r--gtk/packet_history.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/packet_history.c b/gtk/packet_history.c
index b52a9f9ac6..4a3370028c 100644
--- a/gtk/packet_history.c
+++ b/gtk/packet_history.c
@@ -130,7 +130,7 @@ void packet_history_clear(void) {
}
-void packet_history_back(void) {
+static void packet_history_back(void) {
GList *previous;
if(history_current) {
@@ -151,7 +151,7 @@ void packet_history_back(void) {
}
-void packet_history_forward(void) {
+static void packet_history_forward(void) {
GList *next;
if(history_current) {