diff options
author | YAMAMOTO Takashi <[email protected]> | 2013-03-07 11:57:44 +0900 |
---|---|---|
committer | YAMAMOTO Takashi <[email protected]> | 2013-03-08 10:33:51 +0900 |
commit | 1c8524a1a45de864a0c2b2e4a544c7e37501d3be (patch) | |
tree | f38d264066d4b3b409cb159c7ad8594038bc1aef /erts/emulator | |
parent | a8c7417e2e1b6e20c1f1a7247a04579b77ce9037 (diff) | |
download | otp-1c8524a1a45de864a0c2b2e4a544c7e37501d3be.tar.gz otp-1c8524a1a45de864a0c2b2e4a544c7e37501d3be.tar.bz2 otp-1c8524a1a45de864a0c2b2e4a544c7e37501d3be.zip |
compilation fix for NetBSD
spells __NetBSD__ correctly.
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/sys/common/erl_mseg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/sys/common/erl_mseg.c b/erts/emulator/sys/common/erl_mseg.c index aa460420d5..b6e2c9382b 100644 --- a/erts/emulator/sys/common/erl_mseg.c +++ b/erts/emulator/sys/common/erl_mseg.c @@ -439,7 +439,7 @@ mseg_destroy(ErtsMsegAllctr_t *ma, MemKind* mk, void *seg, Uint size) { } #if HAVE_MSEG_RECREATE -#if defined(__NetBsd__) +#if defined(__NetBSD__) #define MREMAP_FLAGS (0) #else #define MREMAP_FLAGS (MREMAP_MAYMOVE) |