diff options
Diffstat (limited to 'networking/arp.c')
-rw-r--r-- | networking/arp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/arp.c b/networking/arp.c index 0099aa5..5f78186 100644 --- a/networking/arp.c +++ b/networking/arp.c @@ -32,6 +32,7 @@ //usage: "\n -H HWTYPE Hardware address type" #include "libbb.h" +#include "common_bufsiz.h" #include "inet_common.h" #include <arpa/inet.h> @@ -69,7 +70,7 @@ struct globals { const char *device; /* current device */ smallint hw_set; /* flag if hw-type was set (-H) */ } FIX_ALIASING; -#define G (*(struct globals*)&bb_common_bufsiz1) +#define G (*(struct globals*)bb_common_bufsiz1) #define ap (G.ap ) #define hw (G.hw ) #define device (G.device ) |