Fix some more wrong format identifiers
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 8 May 2009 21:42:11 +0000 (14:42 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 8 May 2009 21:42:11 +0000 (14:42 -0700)
src/rtnl.c

index 3ea7608..f46be35 100644 (file)
@@ -249,30 +249,30 @@ static inline void print_inet(struct rtattr *attr, const char *name, int family)
        if (family == AF_INET) {
                struct in_addr addr;
                addr = *((struct in_addr *) RTA_DATA(attr));
-               DBG("  attr %s (len %jd) %s\n",
+               DBG("  attr %s (len %d) %s\n",
                                name, RTA_PAYLOAD(attr), inet_ntoa(addr));
        } else
-               DBG("  attr %s (len %jd)\n", name, RTA_PAYLOAD(attr));
+               DBG("  attr %s (len %d)\n", name, RTA_PAYLOAD(attr));
 }
 
 static inline void print_char(struct rtattr *attr, const char *name)
 {
-       DBG("  attr %s (len %jd) %s\n", name, RTA_PAYLOAD(attr),
+       DBG("  attr %s (len %d) %s\n", name, RTA_PAYLOAD(attr),
                                                (char *) RTA_DATA(attr));
 }
 
 static inline void print_byte(struct rtattr *attr, const char *name)
 {
-       DBG("  attr %s (len %jd) 0x%02x\n", name, RTA_PAYLOAD(attr),
+       DBG("  attr %s (len %d) 0x%02x\n", name, RTA_PAYLOAD(attr),
                                        *((unsigned char *) RTA_DATA(attr)));
 }
 
 static inline void print_attr(struct rtattr *attr, const char *name)
 {
        if (name)
-               DBG("  attr %s (len %jd)\n", name, RTA_PAYLOAD(attr));
+               DBG("  attr %s (len %d)\n", name, RTA_PAYLOAD(attr));
        else
-               DBG("  attr %d (len %jd)\n",
+               DBG("  attr %d (len %d)\n",
                                        attr->rta_type, RTA_PAYLOAD(attr));
 }