Skip to content
Commit 6906598f authored by Jonathan Neuschäfer's avatar Jonathan Neuschäfer Committed by Nick Terrell
Browse files

zstd: Fix definition of assert()



assert(x) should emit a warning if x is false. WARN_ON(x) emits a
warning if x is true. Thus, assert(x) should be defined as WARN_ON(!x)
rather than WARN_ON(x).

Signed-off-by: default avatarJonathan Neuschäfer <j.neuschaefer@gmx.net>
Signed-off-by: default avatarNick Terrell <terrelln@fb.com>
parent 038505c4
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment