BUGFIX: Fixed debug statement in factorial in label.C. Author: Inno Gatin. Merge: Dominik Christ.

This commit is contained in:
Dominik Christ 2015-05-12 16:16:39 +01:00
commit 48995a28a7
2 changed files with 2 additions and 1 deletions

View file

@ -82,3 +82,4 @@ Contents:
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"