Merge branch 'ld/osx-keychain-usage-fix'

Workaround for a compiler warning against use of die() in
osx-keychain (in contrib/).

* ld/osx-keychain-usage-fix:
  osx-keychain: fix compiler warning
This commit is contained in:
Junio C Hamano 2022-07-27 09:16:54 -07:00
Родитель 3a03633812 f2fc531585
Коммит eacf9b2bb6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -168,7 +168,7 @@ int main(int argc, const char **argv)
"usage: git credential-osxkeychain <get|store|erase>";
if (!argv[1])
die(usage);
die("%s", usage);
read_credential();