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

This commit is contained in:
Andrij Fedyk 2020-10-27 10:27:27 +01:00 committed by GitHub
parent dc899c4c88
commit 825fe7bd23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@
#include <sys/stat.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__)
/* This macro is called when RDB read failed (possibly a short read) */
#define rdbReportReadError(...) rdbReportError(0, __LINE__,__VA_ARGS__)