diff options
| author | 2012-05-01 15:41:03 -0700 | |
|---|---|---|
| committer | 2012-05-01 15:41:03 -0700 | |
| commit | 833770b2d871967ea2fdd7448d4c8ab99b8ca610 (patch) | |
| tree | 034bf89abc07dbddb7bb4948f8219199aff6f67e | |
| parent | 8a31b50daf530a28c8ce2be8d758c737cb32897b (diff) | |
Fix a SIGSTKFLT typo.
Stupid Unix guys. A few extra letters here and there wouldn't have killed them,
and it would have made a lot of things a lot more readable.
Change-Id: I0cb5f7eeef0ecaf7d1bd819f1b72af6393708edd
| -rw-r--r-- | src/runtime_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime_linux.cc b/src/runtime_linux.cc index 75540b868f..e2c806db8d 100644 --- a/src/runtime_linux.cc +++ b/src/runtime_linux.cc @@ -118,7 +118,7 @@ static const char* GetSignalName(int signal_number) { case SIGILL: return "SIGILL"; case SIGPIPE: return "SIGPIPE"; case SIGSEGV: return "SIGSEGV"; -#if defined(STIGSTLFKT) +#if defined(SIGSTKFLT) case SIGSTKFLT: return "SIGSTKFLT"; #endif case SIGTRAP: return "SIGTRAP"; |