Skip to content

Commit

Permalink
Fixed CORE-4082: Wrong error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
dyemanov committed Apr 12, 2013
1 parent 1e373aa commit 1c5062e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/cvt.cpp
Expand Up @@ -1608,7 +1608,7 @@ void CVT_move_common(const dsc* from, dsc* to, Callbacks* cb)
{
cb->err(Arg::Gds(isc_arith_except) << Arg::Gds(isc_string_truncation) <<
Arg::Gds(isc_trunc_limits) <<
Arg::Num(to->dsc_length) << Arg::Num(from->dsc_length));
Arg::Num(to->getStringLength()) << Arg::Num(from->getStringLength()));
}
} while (--l);
}
Expand Down

0 comments on commit 1c5062e

Please sign in to comment.