pkg: remove dead store in pkgconf_compare_version
ci/woodpecker/push/woodpecker Pipeline was successful Details

pull/244/head
Ariadne Conill 2022-08-16 18:51:11 +00:00
parent 2c89541101
commit ced9bee613
1 changed files with 2 additions and 2 deletions

View File

@ -852,8 +852,8 @@ pkgconf_compare_version(const char *a, const char *b)
pkgconf_strlcpy(buf1, a, sizeof buf1);
pkgconf_strlcpy(buf2, b, sizeof buf2);
one = str1 = buf1;
two = str2 = buf2;
one = buf1;
two = buf2;
while (*one || *two)
{