зеркало из https://github.com/github/putty.git
Fix a gcc compile failure due to -Werror.
gcc doesn't like me not using the return value of the consume() macro.
This commit is contained in:
Родитель
c6a9bf8601
Коммит
50fce01958
|
@ -226,7 +226,7 @@ static ptrlen BinarySource_get_chars_internal(
|
|||
bool present = NULL != strchr(set, *(const char *)consume(0));
|
||||
if (present != include)
|
||||
break;
|
||||
consume(1);
|
||||
(void) consume(1);
|
||||
}
|
||||
const char *end = here;
|
||||
return make_ptrlen(start, end - start);
|
||||
|
|
Загрузка…
Ссылка в новой задаче