Unverified Commit ee4bdf10 authored by Erik Dubbelboer's avatar Erik Dubbelboer Committed by GitHub
Browse files

Fix format strings serverLogObjectDebugInfo to use unsigned (#2927)

This doesn't have any real impact, just a cleanup.
parent c9ca3b70
...@@ -938,8 +938,8 @@ void _serverAssertPrintClientInfo(const client *c) { ...@@ -938,8 +938,8 @@ void _serverAssertPrintClientInfo(const client *c) {
} }
void serverLogObjectDebugInfo(const robj *o) { void serverLogObjectDebugInfo(const robj *o) {
serverLog(LL_WARNING,"Object type: %d", o->type); serverLog(LL_WARNING,"Object type: %u", o->type);
serverLog(LL_WARNING,"Object encoding: %d", o->encoding); serverLog(LL_WARNING,"Object encoding: %u", o->encoding);
serverLog(LL_WARNING,"Object refcount: %d", o->refcount); serverLog(LL_WARNING,"Object refcount: %d", o->refcount);
#if UNSAFE_CRASH_REPORT #if UNSAFE_CRASH_REPORT
/* This code is now disabled. o->ptr may be unreliable to print. in some /* This code is now disabled. o->ptr may be unreliable to print. in some
......
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