Code

apply: get rid of useless x < 0 comparison on a size_t type
[git.git] / builtin / apply.c
index f2edc52818e817e83717f992a6bbd66dad4ef24d..d600ac63abb44be0580addd855f636a05701b9a2 100644 (file)
@@ -250,9 +250,6 @@ static int fuzzy_matchlines(const char *s1, size_t n1,
        const char *last2 = s2 + n2 - 1;
        int result = 0;
 
-       if (n1 < 0 || n2 < 0)
-               return 0;
-
        /* ignore line endings */
        while ((*last1 == '\r') || (*last1 == '\n'))
                last1--;