Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/error.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ void ErrorMayQuit(const Char * msg, Int arg1, Int arg2)
void CheckIsPossList(const Char * desc, Obj poss)
{
if ( ! IS_POSS_LIST( poss ) ) {
ErrorQuit("%s: <positions> must be a dense list of positive integers",
ErrorMayQuit("%s: <positions> must be a dense list of positive integers",
(Int)desc, 0 );
}
}
Expand All @@ -560,7 +560,7 @@ void CheckIsPossList(const Char * desc, Obj poss)
void CheckIsDenseList(const Char * desc, const Char * listName, Obj list)
{
if (!IS_DENSE_LIST(list)) {
ErrorQuit("%s: <%s> must be a dense list", (Int)desc, (Int)listName);
ErrorMayQuit("%s: <%s> must be a dense list", (Int)desc, (Int)listName);
}
}

Expand Down