diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 15:08:09 +0000 |
commit | b71c668c577f7780362f7ea632895c11e3760d66 (patch) | |
tree | 860ccf38cce8c5347ae2b714a22b82a1d7dba323 /networking | |
parent | 82bd9ee64546c4f6f60303f6356377ce6b695a06 (diff) | |
download | busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.gz busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.tar.bz2 busybox-w32-b71c668c577f7780362f7ea632895c11e3760d66.zip |
style fix (stray space before ';')
Diffstat (limited to 'networking')
-rw-r--r-- | networking/interface.c | 2 | ||||
-rw-r--r-- | networking/libiproute/ip_parse_common_args.c | 2 | ||||
-rw-r--r-- | networking/libiproute/ipaddress.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/networking/interface.c b/networking/interface.c index 79f79c987..92d7f5dc0 100644 --- a/networking/interface.c +++ b/networking/interface.c | |||
@@ -803,7 +803,7 @@ static const struct hwtype sit_hwtype = { | |||
803 | .type = ARPHRD_SIT, | 803 | .type = ARPHRD_SIT, |
804 | .print = UNSPEC_print, | 804 | .print = UNSPEC_print, |
805 | .suppress_null_addr = 1 | 805 | .suppress_null_addr = 1 |
806 | } ; | 806 | }; |
807 | #endif | 807 | #endif |
808 | 808 | ||
809 | static const struct hwtype *const hwtypes[] = { | 809 | static const struct hwtype *const hwtypes[] = { |
diff --git a/networking/libiproute/ip_parse_common_args.c b/networking/libiproute/ip_parse_common_args.c index a6ab39924..2d597ea3a 100644 --- a/networking/libiproute/ip_parse_common_args.c +++ b/networking/libiproute/ip_parse_common_args.c | |||
@@ -82,7 +82,7 @@ void ip_parse_common_args(int *argcp, char ***argvp) | |||
82 | argc--; | 82 | argc--; |
83 | argv++; | 83 | argv++; |
84 | } | 84 | } |
85 | _SL_ = oneline ? '\\' : '\n' ; | 85 | _SL_ = oneline ? '\\' : '\n'; |
86 | *argcp = argc; | 86 | *argcp = argc; |
87 | *argvp = argv; | 87 | *argvp = argv; |
88 | } | 88 | } |
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c index fc10ba37c..955a9d933 100644 --- a/networking/libiproute/ipaddress.c +++ b/networking/libiproute/ipaddress.c | |||
@@ -46,7 +46,7 @@ static void print_link_flags(FILE *fp, unsigned flags, unsigned mdown) | |||
46 | fprintf(fp, "<"); | 46 | fprintf(fp, "<"); |
47 | flags &= ~IFF_RUNNING; | 47 | flags &= ~IFF_RUNNING; |
48 | #define _PF(f) if (flags&IFF_##f) { \ | 48 | #define _PF(f) if (flags&IFF_##f) { \ |
49 | flags &= ~IFF_##f ; \ | 49 | flags &= ~IFF_##f; \ |
50 | fprintf(fp, #f "%s", flags ? "," : ""); } | 50 | fprintf(fp, #f "%s", flags ? "," : ""); } |
51 | _PF(LOOPBACK); | 51 | _PF(LOOPBACK); |
52 | _PF(BROADCAST); | 52 | _PF(BROADCAST); |