From 6ef4f89deb525d08381f426d5f4644475ad953c6 Mon Sep 17 00:00:00 2001
From: unknown <knielsen@knielsen-hq.org>
Date: Sat, 7 Jan 2012 23:20:08 +0100
Subject: [PATCH] fix typo.

---
 mysys/my_context.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mysys/my_context.c b/mysys/my_context.c
index e3f35f0c7e6..de2af969448 100644
--- a/mysys/my_context.c
+++ b/mysys/my_context.c
@@ -130,7 +130,7 @@ my_context_init(struct my_context *c, size_t stack_size)
 #if SIZEOF_CHARP > SIZEOF_INT*2
 #error Error: Unable to store pointer in 2 ints on this architecture
 #endif
-  bzero(c, sizeof(*c))
+  bzero(c, sizeof(*c));
   if (!(c->stack= malloc(stack_size)))
     return -1;                                  /* Out of memory */
   c->stack_size= stack_size;
-- 
2.30.9