summaryrefslogtreecommitdiff
path: root/udev
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2008-11-11 23:47:01 +0100
committerKay Sievers <kay.sievers@vrfy.org>2008-11-11 23:47:01 +0100
commit1c8af93aca64033f00d493bad7d505757c1ab414 (patch)
tree79cb2581bdf85c503b04d618c8e9b094d64c3ab1 /udev
parent1449a55ded1e54ed8cb81c17296344d5905ea9d6 (diff)
silence "comparison between signed and unsigned"
Diffstat (limited to 'udev')
-rw-r--r--udev/udev-rules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udev/udev-rules.c b/udev/udev-rules.c
index df5ed5360e..dc4009f74a 100644
--- a/udev/udev-rules.c
+++ b/udev/udev-rules.c
@@ -457,7 +457,7 @@ static int add_string(struct udev_rules *rules, const char *str)
unsigned short node_off;
unsigned char key;
size_t len;
- int depth;
+ unsigned int depth;
unsigned int off;
len = strlen(str);