mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-07 18:01:30 +00:00
[qfcc] Correct error messages in pga3d test
This commit is contained in:
parent
f5ba761c75
commit
a21c857579
1 changed files with 2 additions and 2 deletions
|
@ -114,13 +114,13 @@ test_wedge (void)
|
|||
|
||||
c = a.bvec ∧ (vecc ∧ vecd);
|
||||
if ((scalar_t)c != -842) {
|
||||
printf ("a ∧ (vecc ∧ vecd) != -742': %g\n", c);
|
||||
printf ("a ∧ (vecc ∧ vecd) != -842': %g\n", c);
|
||||
return 1;
|
||||
}
|
||||
|
||||
c = (vecd ∧ vecc) ∧ a.bvec;
|
||||
if ((scalar_t)c != 842) {
|
||||
printf ("(vecd ∧ vecc) ∧ a != 742': %g\n", c);
|
||||
printf ("(vecd ∧ vecc) ∧ a != 842': %g\n", c);
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue