Fix build failure.

This regression was introduced by
de249c8679a188065949f2560b1f0015ea6534b4 (Arena chunk decommit cleanups
and fixes.).

This resolves #254.
diff --git a/include/jemalloc/internal/extent.h b/include/jemalloc/internal/extent.h
index 969c786..386d50e 100644
--- a/include/jemalloc/internal/extent.h
+++ b/include/jemalloc/internal/extent.h
@@ -125,7 +125,7 @@
 extent_node_committed_get(const extent_node_t *node)
 {
 
-	assert(!extent_node_achunk_get(node));
+	assert(!node->en_achunk);
 	return (node->en_committed);
 }