From 178fda8ac9b7b2c2e56c5b2daf0ceff9df2d8f5d Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Fri, 9 Feb 2018 17:55:18 +0000 Subject: hash: win32: fix missing comma in `giterr_set` --- src/hash/hash_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.1