Fixed debug statement in factorial in label.C

This commit is contained in:
Dominik Christ 2015-05-05 15:11:10 +01:00
parent fb637562c9
commit 91a62cb2c3
2 changed files with 2 additions and 1 deletions

View file

@ -75,3 +75,4 @@
Niklas Wikstrom
Vanja Skuric
Alexander Vakhrushev
Inno Gatin

View file

@ -81,7 +81,7 @@ label factorial(label n)
};
# ifdef FULLDEBUG
if (n > 12 && n < 0)
if (n > 12 || n < 0)
{
FatalErrorIn("factorial(label n)")
<< "n value out of range"