diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-08 14:34:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 18:34:08 +0000 |
commit | f3095b8d311c85f633d280a980f76062015f8974 (patch) | |
tree | 60537fb8016ae629abed07309389649be78b39d9 /ext/node/polyfills/_zlib_binding.mjs | |
parent | e4870d84be19f4ea768933522eff437f64963730 (diff) |
chore: upgrade to dprint 0.39 (#19768)
Diffstat (limited to 'ext/node/polyfills/_zlib_binding.mjs')
-rw-r--r-- | ext/node/polyfills/_zlib_binding.mjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/node/polyfills/_zlib_binding.mjs b/ext/node/polyfills/_zlib_binding.mjs index ce6d2f6cc..a04e7fed7 100644 --- a/ext/node/polyfills/_zlib_binding.mjs +++ b/ext/node/polyfills/_zlib_binding.mjs @@ -91,7 +91,7 @@ class Zlib { switch (err) { case Z_BUF_ERROR: this.#error("unexpected end of file", err); - return false; + return false; case Z_OK: case Z_STREAM_END: // normal statuses, not fatal @@ -141,8 +141,8 @@ class Zlib { level, memLevel, strategy, - dictionary, - ) { + dictionary, + ) { const err = ops.op_zlib_init( this.#handle, level, |