From 36e71b88b5f6c2fc6b3aee26b7ebd42df3c52c1b Mon Sep 17 00:00:00 2001 From: gnuhpc Date: Tue, 9 Jan 2018 16:13:02 +0800 Subject: [PATCH] Fix a typo(maybe instruction?) in crash log --- src/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.c b/src/debug.c index 12f62942..293dbe36 100644 --- a/src/debug.c +++ b/src/debug.c @@ -1027,7 +1027,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,