Merge branch 'tb/char-may-be-unsigned'

Build portability fix.

* tb/char-may-be-unsigned:
  path.c: char is not (always) signed
This commit is contained in:
Junio C Hamano 2018-11-06 15:50:22 +09:00
Родитель b9c3f062b6 3063477445
Коммит 1f8e7dc4da
1 изменённых файлов: 1 добавлений и 1 удалений

2
path.c
Просмотреть файл

@ -1369,7 +1369,7 @@ only_spaces_and_periods:
saw_tilde = 1;
} else if (i >= 6)
return 0;
else if (name[i] < 0) {
else if (name[i] & 0x80) {
/*
* We know our needles contain only ASCII, so we clamp
* here to make the results of tolower() sane.