Commit 178fda8ac9b7b2c2e56c5b2daf0ceff9df2d8f5d

Patrick Steinhardt 2018-02-09T17:55:18

hash: win32: fix missing comma in `giterr_set`

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/hash/hash_win32.c b/src/hash/hash_win32.c
index 50c23e8..779802c 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;
 	}