diff options
| author | Junio C Hamano <gitster@pobox.com> | 2022-08-05 15:51:37 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2022-08-05 15:51:37 -0700 |
| commit | 5d2bf34c22df7857c45e49d020bf1b0f4bb0db86 (patch) | |
| tree | 26ef4d4a01f7fef52d39da07dd21f9b2e72af649 | |
| parent | ef7b9ad032be2f0f06186083f3319c18bc002921 (diff) | |
| parent | f2fc531585215d02a75a4d1ce7e6964e9eb21812 (diff) | |
Merge branch 'ld/osx-keychain-usage-fix' into maint
Workaround for a compiler warning against use of die() in
osx-keychain (in contrib/).
source: <pull.1293.git.1658251503775.gitgitgadget@gmail.com>
* ld/osx-keychain-usage-fix:
osx-keychain: fix compiler warning
| -rw-r--r-- | contrib/credential/osxkeychain/git-credential-osxkeychain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/credential/osxkeychain/git-credential-osxkeychain.c b/contrib/credential/osxkeychain/git-credential-osxkeychain.c index 0b44a9b7cc..bf77748d60 100644 --- a/contrib/credential/osxkeychain/git-credential-osxkeychain.c +++ b/contrib/credential/osxkeychain/git-credential-osxkeychain.c @@ -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(); |
