diff options
author | Jason Evans <je@fb.com> | 2011-01-15 01:37:27 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2011-01-15 01:37:27 (GMT) |
commit | dbd3832d207d93e47b4fd3ba3f4824abd1463363 (patch) | |
tree | 2800922e1f519fa5fd77a10ffaa0c673add8c2c4 /jemalloc/include | |
parent | 10e45230940bc0db43945d7b1445557e1405ebe0 (diff) | |
download | jemalloc-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.h | 2 |
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 |