diff --git a/tools/qfcc/test/vecexpr.r b/tools/qfcc/test/vecexpr.r index 0365ed589..e4ca4489b 100644 --- a/tools/qfcc/test/vecexpr.r +++ b/tools/qfcc/test/vecexpr.r @@ -39,8 +39,8 @@ main () printf("t3(5) = %v\n", v); ret |= 1; } - v = [x, y] / 2; - if (v != [2, 2.5]) { + v = [x, y, 0] / 2; + if (v != [2, 2.5, 0]) { printf("v = %v\n", v); ret |= 1; }