Skip to content

Commit

Permalink
CV fix: CID #1321242
Browse files Browse the repository at this point in the history
Change-Id: I7a9baf24c1c2ef91eb8211dd23267ba9bd77e787
  • Loading branch information
sidgairo18 committed Mar 22, 2017
1 parent 37f503c commit 7151385
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -183,7 +183,7 @@ types::Function::ReturnValue sci_schur(types::typed_list &in, int _iRetCount, ty
}
case 12: // double string
{
if (_iRetCount < 2 && _iRetCount > 3)
if (_iRetCount >= 2 && _iRetCount <= 3)
{
Scierror(78, _("%s: Wrong number of output argument(s): %d to %d expected.\n"), "schur", 2, 3);
return types::Function::Error;
Expand Down

0 comments on commit 7151385

Please sign in to comment.