summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2018-02-09 17:55:18 +0000
committerPatrick Steinhardt <ps@pks.im>2018-02-09 17:55:18 +0000
commit178fda8ac9b7b2c2e56c5b2daf0ceff9df2d8f5d (patch)
tree41b990f677473b22c288d37495f918ca28120d52
parent638c6b8cec27cfe73b14e00908a8a90cc0436ef1 (diff)
downloadlibgit2-178fda8ac9b7b2c2e56c5b2daf0ceff9df2d8f5d.tar.gz
hash: win32: fix missing comma in `giterr_set`
-rw-r--r--src/hash/hash_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/hash_win32.c b/src/hash/hash_win32.c
index 50c23e816..779802c4b 100644
--- a/src/hash/hash_win32.c
+++ b/src/hash/hash_win32.c
@@ -57,7 +57,7 @@ GIT_INLINE(int) hash_cng_prov_init(void)
if (hash_prov.prov.cng.open_algorithm_provider(&hash_prov.prov.cng.handle, GIT_HASH_CNG_HASH_TYPE, NULL, GIT_HASH_CNG_HASH_REUSABLE) < 0) {
FreeLibrary(hash_prov.prov.cng.dll);
- giterr_set(GITERR_OS "algorithm provider could not be initialized");
+ giterr_set(GITERR_OS, "algorithm provider could not be initialized");
return -1;
}