summaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-31 09:53:53 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-01-31 09:53:53 +0000
commit9f4a1e1c75e86a38da22a3e82980fcddc4e58717 (patch)
tree707fdec25c2510d52f3ba6b2e4da15ce9089efd0 /networking
parentdfe6e74157e98a696b60c586a4ed0a35b9362838 (diff)
downloadbusybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.tar.gz
busybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.tar.bz2
busybox-w32-9f4a1e1c75e86a38da22a3e82980fcddc4e58717.zip
- add and use ATTRIBUTE_ALIGNED(num_bytes)
- remove unused parameter pindex from fdisk.c, xbsd_initlabel()
Diffstat (limited to 'networking')
-rw-r--r--networking/traceroute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 95aa290a1..a9292a284 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -293,7 +293,7 @@ struct IFADDRLIST {
293static const char route[] = "/proc/net/route"; 293static const char route[] = "/proc/net/route";
294 294
295/* last inbound (icmp) packet */ 295/* last inbound (icmp) packet */
296static u_char packet[512] __attribute__((aligned (32))); 296static u_char packet[512] ATTRIBUTE_ALIGNED(32);
297 297
298static struct ip *outip; /* last output (udp) packet */ 298static struct ip *outip; /* last output (udp) packet */
299static struct udphdr *outudp; /* last output (udp) packet */ 299static struct udphdr *outudp; /* last output (udp) packet */