From 11464bbb9e160257e148be139e830090a7b808a5 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 17 Aug 2018 19:45:44 +0300 Subject: [PATCH] Fix indentation of 'define GC_DATAEND' in gc.h (fix of commit 4e24d219d) * include/gc.h [__CYGWIN__ && !__x86_64__] (GC_DATAEND): Fix indentation. --- include/gc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gc.h b/include/gc.h index 8db915e9..56f3eb70 100644 --- a/include/gc.h +++ b/include/gc.h @@ -1879,7 +1879,7 @@ GC_API int GC_CALL GC_get_force_unmap_on_gcollect(void); extern int _data_start__[], _data_end__[], _bss_start__[], _bss_end__[]; # define GC_DATASTART ((GC_word)_data_start__ < (GC_word)_bss_start__ \ ? (void *)_data_start__ : (void *)_bss_start__) -# define GC_DATAEND ((GC_word)_data_end__ > (GC_word)_bss_end__ \ +# define GC_DATAEND ((GC_word)_data_end__ > (GC_word)_bss_end__ \ ? (void *)_data_end__ : (void *)_bss_end__) # endif /* !__x86_64__ */ # define GC_INIT_CONF_ROOTS GC_add_roots(GC_DATASTART, GC_DATAEND); \ -- 2.40.0