From 077b14ccfa5f8b4defc2f98b01cf17e0f2a70922 Mon Sep 17 00:00:00 2001 From: Lauri Kasanen Date: Mon, 8 May 2017 10:19:26 +0300 Subject: [PATCH] test/val/postincdec: Test for the final val value --- test/val/postincdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/val/postincdec.c b/test/val/postincdec.c index 19a6eb2a7..6d3e9593c 100644 --- a/test/val/postincdec.c +++ b/test/val/postincdec.c @@ -19,5 +19,5 @@ int main() { array[val--] = 0; array[val--] = 0; - return (array[0] == array[1] && array[0] == 0) ? 0 : 1; + return (array[0] == array[1] && array[0] == 0 && val == 0xff) ? 0 : 1; } -- 2.39.5