diff --git a/lib/tests/scaffold/17-compare-unsigned-short-le.c b/lib/tests/scaffold/17-compare-unsigned-short-le.c index 20b77ebc..97403af4 100644 --- a/lib/tests/scaffold/17-compare-unsigned-short-le.c +++ b/lib/tests/scaffold/17-compare-unsigned-short-le.c @@ -1,6 +1,6 @@ /* -*-comment-start: "//";comment-end:""-*- * GNU Mes --- Maxwell Equations of Software - * Copyright © 2018 Jan (janneke) Nieuwenhuizen + * Copyright © 2018,2023 Janneke Nieuwenhuizen * * This file is part of GNU Mes. * @@ -21,10 +21,12 @@ int main () { - unsigned short r = -2; - if (r <= -3) + unsigned short us = -2; + int i = -3; + if (us <= i) return 1; - if (r <= (unsigned short) -1) + i = -1; + if (us <= (unsigned short) i) return 0; return 2; }