diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-12-10 20:24:18 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-12-11 21:47:06 +0100 |
commit | c4ef05484df942b6cc2037d33dd56cd209d1db9b (patch) | |
tree | 57a8709fb63978decef7e480d5ef12b4af1e3b86 /src/libudev/libudev-device.c | |
parent | 015df1f78f443f91b354e0c4b4cb76de86c838eb (diff) |
use correct format types
Diffstat (limited to 'src/libudev/libudev-device.c')
-rw-r--r-- | src/libudev/libudev-device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libudev/libudev-device.c b/src/libudev/libudev-device.c index 16ee1f4be3..825a0e10f4 100644 --- a/src/libudev/libudev-device.c +++ b/src/libudev/libudev-device.c @@ -139,7 +139,7 @@ static int udev_device_set_ifindex(struct udev_device *udev_device, int ifindex) char num[32]; udev_device->ifindex = ifindex; - snprintf(num, sizeof(num), "%u", ifindex); + snprintf(num, sizeof(num), "%d", ifindex); udev_device_add_property(udev_device, "IFINDEX", num); return 0; } |