summaryrefslogtreecommitdiff
path: root/mysys/my_context.c
diff options
context:
space:
mode:
authorunknown <knielsen@knielsen-hq.org>2012-01-07 23:20:08 +0100
committerunknown <knielsen@knielsen-hq.org>2012-01-07 23:20:08 +0100
commit6ef4f89deb525d08381f426d5f4644475ad953c6 (patch)
treedd7d83847ca856e10027762d5256aadb4dd93426 /mysys/my_context.c
parent17940b652d0a078f5a28b089aa0f5362756d438e (diff)
downloadmariadb-git-6ef4f89deb525d08381f426d5f4644475ad953c6.tar.gz
fix typo.
Diffstat (limited to 'mysys/my_context.c')
-rw-r--r--mysys/my_context.c2
1 files changed, 1 insertions, 1 deletions
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;