BUGFIX: Fixed debug statement in factorial in label.C. Author: Inno Gatin. Merge: Dominik Christ.
This commit is contained in:
commit
4608dddc89
2 changed files with 2 additions and 1 deletions
|
@ -82,3 +82,4 @@ Contents:
|
|||
Niklas Wikstrom
|
||||
Vanja Skuric
|
||||
Alexander Vakhrushev
|
||||
Inno Gatin
|
||||
|
|
|
@ -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"
|
||||
|
|
Reference in a new issue