summaryrefslogtreecommitdiffstats
path: root/configure.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-10-06 12:45:32 +0000
committerRoy Marples <roy@marples.name>2008-10-06 12:45:32 +0000
commit35a8183fb9d41cd62d1b1689ffe9953fff677aa9 (patch)
tree0be5db98c80287550e7a45d0f3f96a1e93b383c5 /configure.c
parent079649b0b1b5e074c745c84f9ebf3fd504c9a628 (diff)
downloaddhcpcd-35a8183fb9d41cd62d1b1689ffe9953fff677aa9.tar.xz
static objects are initialized to 0 by default, so don't explicity do this.
Diffstat (limited to 'configure.c')
-rw-r--r--configure.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.c b/configure.c
index 1dadc186..d4652aa5 100644
--- a/configure.c
+++ b/configure.c
@@ -59,7 +59,7 @@
# endif
#endif
-static struct rt *routes = NULL;
+static struct rt *routes;
static int
exec_script(char *const *argv, char *const *env)