Skip to content
Prev Previous commit
Next Next commit
Break line to comply with PEP-7
  • Loading branch information
rhpvorderman committed Jun 1, 2021
commit a19f434d0d92ceed1fc3896028322549e9e208bd
3 changes: 2 additions & 1 deletion Modules/zlibmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ zlib_compress_impl(PyObject *module, Py_buffer *data, int level, int wbits)
zst.zalloc = PyZlib_Malloc;
zst.zfree = PyZlib_Free;
zst.next_in = ibuf;
int err = deflateInit2(&zst, level, DEFLATED, wbits, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
int err = deflateInit2(&zst, level, DEFLATED, wbits, DEF_MEM_LEVEL,
Z_DEFAULT_STRATEGY);

switch (err) {
case Z_OK:
Expand Down