diff options
| author | Roy Marples <roy@marples.name> | 2008-10-06 12:45:32 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2008-10-06 12:45:32 +0000 |
| commit | 35a8183fb9d41cd62d1b1689ffe9953fff677aa9 (patch) | |
| tree | 0be5db98c80287550e7a45d0f3f96a1e93b383c5 /if-linux.c | |
| parent | 079649b0b1b5e074c745c84f9ebf3fd504c9a628 (diff) | |
| download | dhcpcd-35a8183fb9d41cd62d1b1689ffe9953fff677aa9.tar.xz | |
static objects are initialized to 0 by default, so don't explicity do this.
Diffstat (limited to 'if-linux.c')
| -rw-r--r-- | if-linux.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -68,9 +68,9 @@ #define BUFFERLEN 256 -static void (*nl_carrier)(const char *) = NULL; -static void (*nl_add)(const char *) = NULL; -static void (*nl_remove)(const char *) = NULL; +static void (*nl_carrier)(const char *); +static void (*nl_add)(const char *); +static void (*nl_remove)(const char *); int if_wireless(const char *ifname) |
