mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
Fix format strings serverLogObjectDebugInfo to use unsigned (#2927)
This doesn't have any real impact, just a cleanup.
This commit is contained in:
@@ -938,8 +938,8 @@ void _serverAssertPrintClientInfo(const client *c) {
|
||||
}
|
||||
|
||||
void serverLogObjectDebugInfo(const robj *o) {
|
||||
serverLog(LL_WARNING,"Object type: %d", o->type);
|
||||
serverLog(LL_WARNING,"Object encoding: %d", o->encoding);
|
||||
serverLog(LL_WARNING,"Object type: %u", o->type);
|
||||
serverLog(LL_WARNING,"Object encoding: %u", o->encoding);
|
||||
serverLog(LL_WARNING,"Object refcount: %d", o->refcount);
|
||||
#if UNSAFE_CRASH_REPORT
|
||||
/* This code is now disabled. o->ptr may be unreliable to print. in some
|
||||
|
||||
Reference in New Issue
Block a user