Module Name:    src
Committed By:   christos
Date:           Fri Mar 29 13:04:01 UTC 2019

Modified Files:
        src/external/bsd/jemalloc/include/jemalloc/internal:
            jemalloc_internal_defs.h

Log Message:
there is no elifdef


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
    src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
diff -u src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.3 src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.4
--- src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.3	Fri Mar 29 08:50:30 2019
+++ src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h	Fri Mar 29 09:04:00 2019
@@ -200,9 +200,9 @@
 
 /* One page is 2^LG_PAGE bytes. */
 #include <machine/vmparam.h>
-#ifdef PAGE_SHIFT
+#if defined(PAGE_SHIFT)
 #define LG_PAGE PAGE_SHIFT
-#elifdef MAX_PAGE_SHIFT
+#elif defined(MAX_PAGE_SHIFT)
 #define LG_PAGE MAX_PAGE_SHIFT
 #else
 #error "PAGE_SHIFT is not defined"

Reply via email to