Author: enrico
Date: Tue Jan  7 21:14:18 2014
New Revision: 198731

URL: http://llvm.org/viewvc/llvm-project?rev=198731&view=rev
Log:
Alignment fix

Modified:
    lldb/trunk/test/crashinfo.c

Modified: lldb/trunk/test/crashinfo.c
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/test/crashinfo.c?rev=198731&r1=198730&r2=198731&view=diff
==============================================================================
--- lldb/trunk/test/crashinfo.c (original)
+++ lldb/trunk/test/crashinfo.c Tue Jan  7 21:14:18 2014
@@ -35,7 +35,7 @@ static PyObject* setCrashReporterDescrip
                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;


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to