Correct non-context build error
diff --git a/src/cbor.c b/src/cbor.c
index 90e8256..9988a93 100644
--- a/src/cbor.c
+++ b/src/cbor.c
@@ -22,7 +22,7 @@
 #define CBOR_CONTEXT_PARAM
 #define CN_CALLOC(ctx) calloc(1, sizeof(cn_cbor));
 #define CN_CALLOC_CONTEXT() CN_CALLOC(context)
-#deifne CN_CBOR_CALLOC(c, i, ctx) calloc(c, i);
+#define CN_CBOR_CALLOC(c, i, ctx) calloc(c, i);
 #endif