summaryrefslogtreecommitdiff
path: root/include/gc.h
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-08-17 19:45:44 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-08-17 20:02:25 +0300
commit11464bbb9e160257e148be139e830090a7b808a5 (patch)
treecc62545b39dcd0192cbb641aab0c164c0fcd3c7f /include/gc.h
parentde24da84eed2c14cffa8a27f6040933e0ff23e9c (diff)
downloadbdwgc-11464bbb9e160257e148be139e830090a7b808a5.tar.gz
Fix indentation of 'define GC_DATAEND' in gc.h
(fix of commit 4e24d219d) * include/gc.h [__CYGWIN__ && !__x86_64__] (GC_DATAEND): Fix indentation.
Diffstat (limited to 'include/gc.h')
-rw-r--r--include/gc.h2
1 files changed, 1 insertions, 1 deletions
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); \