]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Nit
authorW. Felix Handte <w@felixhandte.com>
Tue, 3 Sep 2019 17:00:59 +0000 (13:00 -0400)
committerW. Felix Handte <w@felixhandte.com>
Mon, 9 Sep 2019 17:34:08 +0000 (13:34 -0400)
lib/compress/zstd_cwksp.c

index 36ba4bbe0d39b2a5e7a104ace813230f96204aa0..a9471639caa5726e4e429abed656dd578f37b4cd 100644 (file)
@@ -112,7 +112,7 @@ void* ZSTD_cwksp_reserve_object(ZSTD_cwksp* ws, size_t bytes) {
     void* start = ws->objectEnd;
     void* end = (BYTE*)start + roundedBytes;
     DEBUGLOG(4,
-        "cwksp: reserving %zd bytes object (rounded to %zd), %zd bytes remaining",
+        "cwksp: reserving object %zd bytes (rounded to %zd), %zd bytes remaining",
         bytes, roundedBytes, ZSTD_cwksp_available_space(ws) - roundedBytes);
     assert(((size_t)start & (sizeof(void*)-1)) == 0);
     assert((bytes & (sizeof(void*)-1)) == 0);