fix error message

This commit is contained in:
Tiago Gomes 2012-04-30 14:12:00 +01:00
parent d6e11ca84d
commit 7cf8c68e15
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class TFactor
Params::size_type newSize = params_.size() * g_ranges[i];
if (newSize > Util::maxUnsigned()) {
// factor will become to bigger, is not worth to continue
cerr << "error: an overflow occurred when performing expansion" ;
cerr << "error: an overflow occurred on factor multiplication" ;
cerr << endl;
abort();
}