Fix a typo(maybe instruction?) in crash log

This commit is contained in:
gnuhpc
2018-01-09 16:13:02 +08:00
committed by antirez
parent 9f7e214e8c
commit 2e0d241420

View File

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