From 588ec92ac685dfd2a0f0132d102583a7eddd6632 Mon Sep 17 00:00:00 2001 From: "Peter H. Froehlich" Date: Sat, 26 Sep 2015 23:09:49 -0400 Subject: [PATCH] Add parens to clarify. --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.c b/console.c index 766dc30..ed0b73b 100644 --- a/console.c +++ b/console.c @@ -31,7 +31,7 @@ printint(int xx, int base, int sign) int i; uint x; - if(sign && (sign = xx < 0)) + if(sign && (sign = (xx < 0))) x = -xx; else x = xx; -- 2.50.1