From: Kay Sievers Date: Tue, 11 Nov 2008 22:47:01 +0000 (+0100) Subject: silence "comparison between signed and unsigned" X-Git-Tag: 174~1332 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=1c8af93aca64033f00d493bad7d505757c1ab414 silence "comparison between signed and unsigned" --- diff --git a/udev/udev-rules.c b/udev/udev-rules.c index df5ed5360..dc4009f74 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);