From 29726a94cebc740c16b0f58fff18a9678b832120 Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Wed, 8 Jan 2014 03:14:18 +0000 Subject: [PATCH] Alignment fix llvm-svn: 198731 --- lldb/test/crashinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/crashinfo.c b/lldb/test/crashinfo.c index 718cb006e922..19013468bb26 100644 --- a/lldb/test/crashinfo.c +++ b/lldb/test/crashinfo.c @@ -35,7 +35,7 @@ static PyObject* setCrashReporterDescription(PyObject* self, PyObject* string) char* data = PyString_AsString(string); if (size > 0 && data) { - ++size; // Include the NULL terminateor in allocation and memcpy() + ++size; // Include the NULL terminateor in allocation and memcpy() __crashreporter_info__ = malloc(size); memcpy(__crashreporter_info__, data, size); return Py_True;