Commit 9dabbd1a authored by antirez's avatar antirez
Browse files

Alter coding style in #4696 to conform to Redis code base.

parent 5c47e2e9
......@@ -148,7 +148,7 @@ void *zrealloc(void *ptr, size_t size) {
size_t oldsize;
void *newptr;
if (size == 0 && ptr!=NULL) {
if (size == 0 && ptr != NULL) {
zfree(ptr);
return NULL;
}
......
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