Description: fix a "comparison between signed and unsigned integer expressions" warning
Author: Florian Schlichting <fsfs@debian.org>

--- a/src/resParser.l
+++ b/src/resParser.l
@@ -76,7 +76,7 @@
    result = YY_NULL;                                                   \
 }                                                                      \
 else {                                                                 \
-   int ii = 0;                                                         \
+   unsigned int ii = 0;                                                \
    for ( ; (ii < max_size) && (!input_stream_ptr->atEnd()); ++ii ) {   \
 	(*input_stream_ptr) >> buf[ii]; \
    }                                                                   \
