From 825fe7bd23051d804ebbe2f4be5ad67a7e4769bb Mon Sep 17 00:00:00 2001 From: Andrij Fedyk <1037995+fedyk@users.noreply.github.com> Date: Tue, 27 Oct 2020 10:27:27 +0100 Subject: [PATCH] rdb.c: fix typo in a comment (#7970) --- src/rdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rdb.c b/src/rdb.c index e94a79125..9301cdf71 100644 --- a/src/rdb.c +++ b/src/rdb.c @@ -43,7 +43,7 @@ #include #include -/* This macro is called when the internal RDB stracture is corrupt */ +/* This macro is called when the internal RDB structure is corrupt */ #define rdbExitReportCorruptRDB(...) rdbReportError(1, __LINE__,__VA_ARGS__) /* This macro is called when RDB read failed (possibly a short read) */ #define rdbReportReadError(...) rdbReportError(0, __LINE__,__VA_ARGS__)