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

This commit is contained in:
antirez 2019-03-21 12:18:55 +01:00
parent 5c47e2e964
commit 9dabbd1ab0

View File

@ -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;
}