about summary refs log tree commit
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2007-08-22 10:28:20 -0700
committerEric Wong <normalperson@yhbt.net>2007-08-22 10:28:20 -0700
commit6d2780bf8c9aeb3489bdf61698eef5281de7d39d (patch)
tree75f89f3831915d7c1617ec57cc590586e95c153f
parent12cb7eef6aebce27f68665ce064517fccf1b8ed9 (diff)
downloaddavid-6d2780bf8c9aeb3489bdf61698eef5281de7d39d.tar.gz
die() should be static
-rw-r--r--david.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/david.c b/david.c
index 903cff0..5c8c43d 100644
--- a/david.c
+++ b/david.c
@@ -80,7 +80,7 @@ struct interface {
 struct interface interfaces[NR_CONN];
 static pid_t children_pids[MAX_CHILDREN];
 
-void die(const char *fmt, ...)
+static void die(const char *fmt, ...)
 {
         va_list args;
         va_start(args, fmt);