aboutsummaryrefslogtreecommitdiffstats
path: root/c/sha3sum.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/sha3sum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/sha3sum.c b/c/sha3sum.c
index e44fc51..8b32755 100644
--- a/c/sha3sum.c
+++ b/c/sha3sum.c
@@ -475,13 +475,13 @@ int main(int argc, char** argv)
}
}
- if ((_R & _C & _O) == null) /* s? */
+ if ((_R | _C | _O) == null) /* s? */
{
s = _S ? s : _s;
c = -((r = (o = (((s << 5) / 100 + 7) >> 3) << 3) << 1) - s);
o = o < 8 ? 8 : o;
}
- else if ((_R & _C) == null) /* !o s? */
+ else if ((_R | _C) == null) /* !o s? */
{
r = _r;
c = _c;