Remove formatting-only changes

This commit is contained in:
Stella Lau
2017-08-23 10:24:19 -07:00
parent 11303778d0
commit 6f1a21c7e9
6 changed files with 28 additions and 327 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ static unsigned long long GetCurrentClockTimeMicroseconds(void)
DEBUGLOG(MUTEX_WAIT_TIME_DLEVEL, "Thread took %llu microseconds to acquire mutex %s \n", \
elapsedTime, #mutex); \
} } \
} else { pthread_mutex_lock(mutex); } \
} else pthread_mutex_lock(mutex); \
}
#else
@@ -743,7 +743,7 @@ size_t ZSTDMT_initCStream_internal(
ZSTD_freeCDict(zcs->cdictLocal);
/* TODO: cctxParam version? Is this correct? */
zcs->cdictLocal = ZSTD_createCDict_advanced(dict, dictSize,
0 /* byRef */, ZSTD_dm_auto, /* note : a loadPrefix becomes an internal CDict */
0 /* byRef */, ZSTD_dm_auto, /* note : a loadPrefix becomes an internal CDict */
requestedParams.cParams, zcs->cMem);
zcs->cdict = zcs->cdictLocal;
if (zcs->cdictLocal == NULL) return ERROR(memory_allocation);