Merge pull request #4586 from gnuhpc/fix-crashlog-typo

Fix a typo(maybe instruction?) in crash log
This commit is contained in:
Salvatore Sanfilippo 2018-01-12 17:16:12 +01:00 committed by GitHub
commit 71914387ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1027,7 +1027,7 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
"Redis %s crashed by signal: %d", REDIS_VERSION, sig); "Redis %s crashed by signal: %d", REDIS_VERSION, sig);
if (eip != NULL) { if (eip != NULL) {
serverLog(LL_WARNING, serverLog(LL_WARNING,
"Crashed running the instuction at: %p", eip); "Crashed running the instruction at: %p", eip);
} }
if (sig == SIGSEGV || sig == SIGBUS) { if (sig == SIGSEGV || sig == SIGBUS) {
serverLog(LL_WARNING, serverLog(LL_WARNING,