summaryrefslogtreecommitdiffstats
path: root/jemalloc/include
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2011-01-15 01:37:27 (GMT)
committerJason Evans <je@fb.com>2011-01-15 01:37:27 (GMT)
commitdbd3832d207d93e47b4fd3ba3f4824abd1463363 (patch)
tree2800922e1f519fa5fd77a10ffaa0c673add8c2c4 /jemalloc/include
parent10e45230940bc0db43945d7b1445557e1405ebe0 (diff)
downloadjemalloc-dbd3832d207d93e47b4fd3ba3f4824abd1463363.zip
jemalloc-dbd3832d207d93e47b4fd3ba3f4824abd1463363.tar.gz
jemalloc-dbd3832d207d93e47b4fd3ba3f4824abd1463363.tar.bz2
Fix assertion typos.
s/=/==/ in several assertions, as well as fixing spelling errors.
Diffstat (limited to 'jemalloc/include')
-rw-r--r--jemalloc/include/jemalloc/internal/ckh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jemalloc/include/jemalloc/internal/ckh.h b/jemalloc/include/jemalloc/internal/ckh.h
index d4e391b..3e4ad4c 100644
--- a/jemalloc/include/jemalloc/internal/ckh.h
+++ b/jemalloc/include/jemalloc/internal/ckh.h
@@ -31,7 +31,7 @@ struct ckhc_s {
struct ckh_s {
#ifdef JEMALLOC_DEBUG
-#define CKH_MAGIG 0x3af2489d
+#define CKH_MAGIC 0x3af2489d
uint32_t magic;
#endif