diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-15 12:29:20 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-15 12:29:20 +0000 |
commit | e01b38f4fb637cc74ede0bc4a6b1b4e8aa7f5306 (patch) | |
tree | e8f16ed0f95e7c1810d7cb8a43ea06a64e70f7f3 /sys | |
parent | 7900a56872a4d7bec9850fd44498d0c93e8f569f (diff) |
Adjust whitespace (tabs vs spaces) on one line to reduce diff with upstream
Diffstat (limited to 'sys')
-rw-r--r-- | sys/lib/libz/inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libz/inflate.c b/sys/lib/libz/inflate.c index 529670d268a..f35a99c4185 100644 --- a/sys/lib/libz/inflate.c +++ b/sys/lib/libz/inflate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inflate.c,v 1.19 2022/08/09 07:39:00 tb Exp $ */ +/* $OpenBSD: inflate.c,v 1.20 2022/08/15 12:29:19 tb Exp $ */ /* inflate.c -- zlib decompression * Copyright (C) 1995-2022 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h @@ -787,7 +787,7 @@ int flush; if (state->head != Z_NULL && state->head->extra != Z_NULL && (len = state->head->extra_len - state->length) < - state->head->extra_max) { + state->head->extra_max) { zmemcpy(state->head->extra + len, next, len + copy > state->head->extra_max ? state->head->extra_max - len : copy); |