diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-02-05 02:38:56 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:24:19 -0700 |
commit | 1134a81b98e189a8ec99a1ea4aba8e52b358873b (patch) | |
tree | 9ea0bce0558d588bf0b6d0ddc3e8464f51744523 /udev_sysfs.c | |
parent | 9172c95c77e8f1377b6c8becc84995e6e28a61eb (diff) |
[PATCH] fix -Wsign-compare warnings
Diffstat (limited to 'udev_sysfs.c')
-rw-r--r-- | udev_sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_sysfs.c b/udev_sysfs.c index 1b3603df6d..fd7330a161 100644 --- a/udev_sysfs.c +++ b/udev_sysfs.c @@ -211,7 +211,7 @@ static int class_device_expect_no_device_link(struct sysfs_class_device *class_d { NULL, NULL } }; const struct class_device *classdevice; - int len; + unsigned int len; /* the kernel may tell us what to wait for */ if (kernel_release_satisfactory(2,6,10) > 0) |