diff options
| author | Enrico Granata <egranata@apple.com> | 2014-01-08 03:14:18 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2014-01-08 03:14:18 +0000 |
| commit | 29726a94cebc740c16b0f58fff18a9678b832120 (patch) | |
| tree | c72cd47b007b4079944868aea5bafcbd4de18b9f /lldb/test/crashinfo.c | |
| parent | 26abebbb2c786b504e3bcb2892d0a5515fc3156f (diff) | |
| download | bcm5719-llvm-29726a94cebc740c16b0f58fff18a9678b832120.tar.gz bcm5719-llvm-29726a94cebc740c16b0f58fff18a9678b832120.zip | |
Alignment fix
llvm-svn: 198731
Diffstat (limited to 'lldb/test/crashinfo.c')
| -rw-r--r-- | lldb/test/crashinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/crashinfo.c b/lldb/test/crashinfo.c index 718cb006e92..19013468bb2 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; |

