Unverified Commit 825fe7bd authored by Andrij Fedyk's avatar Andrij Fedyk Committed by GitHub
Browse files

rdb.c: fix typo in a comment (#7970)

parent dc899c4c
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/param.h> #include <sys/param.h>
/* 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__) #define rdbExitReportCorruptRDB(...) rdbReportError(1, __LINE__,__VA_ARGS__)
/* This macro is called when RDB read failed (possibly a short read) */ /* This macro is called when RDB read failed (possibly a short read) */
#define rdbReportReadError(...) rdbReportError(0, __LINE__,__VA_ARGS__) #define rdbReportReadError(...) rdbReportError(0, __LINE__,__VA_ARGS__)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment