aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/utils.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-03-12 20:34:18 +0100
committerSverker Eriksson <[email protected]>2015-03-12 20:34:18 +0100
commit2ae925af364d1d1a0e1f4a2693a7030e58a26018 (patch)
tree2956487be46fb16d24b61e8b3677298ce860b416 /erts/emulator/beam/utils.c
parent2dae04b0c73f5fc855d4cfb2e6231bf65e51ebce (diff)
downloadotp-2ae925af364d1d1a0e1f4a2693a7030e58a26018.tar.gz
otp-2ae925af364d1d1a0e1f4a2693a7030e58a26018.tar.bz2
otp-2ae925af364d1d1a0e1f4a2693a7030e58a26018.zip
erts: Fix typo in make_hash2 for 32-bit arch
Diffstat (limited to 'erts/emulator/beam/utils.c')
-rw-r--r--erts/emulator/beam/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c
index 23ae885b6d..933a8ffa0b 100644
--- a/erts/emulator/beam/utils.c
+++ b/erts/emulator/beam/utils.c
@@ -1188,7 +1188,7 @@ make_hash2(Eterm term)
#ifdef ARCH_64
# define POINTER_HASH(Ptr, AConst) UINT32_HASH_2((Uint32)(UWord)(Ptr), (((UWord)(Ptr)) >> 32), AConst)
#else
-# define POINTER_HASH(Ptr, AConst) UINT32_HASH(Ptr, Const)
+# define POINTER_HASH(Ptr, AConst) UINT32_HASH(Ptr, AConst)
#endif
/* Optimization. Simple cases before declaration of estack. */