summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2018-01-12 17:16:12 +0100
committerGitHub <noreply@github.com>2018-01-12 17:16:12 +0100
commit71914387ba5f61bb9e36314ee4693c8812f89db9 (patch)
treefbcef426491bd002deba9878323bc28705dc1cf2
parentdb7bd6fda9ec0ab942c49e0ec72b12e03d1345f6 (diff)
parent36e71b88b5f6c2fc6b3aee26b7ebd42df3c52c1b (diff)
downloadredis-71914387ba5f61bb9e36314ee4693c8812f89db9.tar.gz
Merge pull request #4586 from gnuhpc/fix-crashlog-typo
Fix a typo(maybe instruction?) in crash log
-rw-r--r--src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c
index 12f629428..293dbe36e 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,