mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
Fix format strings serverLogObjectDebugInfo to use unsigned (#2927)
This doesn't have any real impact, just a cleanup.
This commit is contained in:
parent
c9ca3b7065
commit
ee4bdf10ee
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user