From 326c2f385886f2912e56f26e5e76498cdc704585 Mon Sep 17 00:00:00 2001
From: Ivan Maidanski <ivmai@mail.ru>
Date: Thu, 13 Oct 2016 11:37:21 +0300
Subject: [PATCH] Fix typo in CHECK_GCLIB_VERSION name (test)

* tests/test.c (CHECK_GCLIB_VERSION): Fix typo in macro name.
---
 tests/test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test.c b/tests/test.c
index 6a97200d..46acbf41 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -118,7 +118,7 @@
 
 # include <stdarg.h>
 
-#define CHECH_GCLIB_VERSION \
+#define CHECK_GCLIB_VERSION \
             if (GC_get_version() != ((GC_VERSION_MAJOR<<16) \
                                     | (GC_VERSION_MINOR<<8) \
                                     | GC_VERSION_MICRO)) { \
@@ -137,7 +137,7 @@
 #endif
 
 #define GC_COND_INIT() \
-    INIT_FORK_SUPPORT; GC_OPT_INIT; CHECH_GCLIB_VERSION; INIT_PRINT_STATS
+    INIT_FORK_SUPPORT; GC_OPT_INIT; CHECK_GCLIB_VERSION; INIT_PRINT_STATS
 
 #define CHECK_OUT_OF_MEMORY(p) \
             if ((p) == NULL) { \
-- 
2.40.0