diff options
| author | Elliott Hughes <enh@google.com> | 2014-01-16 10:53:11 -0800 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2014-01-16 12:54:18 -0800 |
| commit | ccecf1425412beb2bc3bb38d470293fdc244d6f1 (patch) | |
| tree | 9fd922197bc88bed453efa0738f3dfb5d6db4c3c /logwrapper | |
| parent | e847f429f43ae56aaa406697ca603c8469e2100b (diff) | |
| download | core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.tar.gz core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.tar.bz2 core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.zip | |
system/core 64-bit cleanup.
This cleans up most of the size-related problems in system/core.
There are still a few changes needed for a clean 64-bit build,
but they look like they might require changes to things like the
fastboot protocol.
Change-Id: I1560425a289fa158e13e2e3173cc3e71976f92c0
Diffstat (limited to 'logwrapper')
| -rw-r--r-- | logwrapper/logwrapper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/logwrapper/logwrapper.c b/logwrapper/logwrapper.c index db6cb4c3b..9e0385db2 100644 --- a/logwrapper/logwrapper.c +++ b/logwrapper/logwrapper.c @@ -90,7 +90,8 @@ int main(int argc, char* argv[]) { } if (seg_fault_on_exit) { - *(int *)status = 0; // causes SIGSEGV with fault_address = status + uintptr_t fault_address = (uintptr_t) status; + *(int *) fault_address = 0; // causes SIGSEGV with fault_address = status } return rc; |
