Fixed bug: Wrong string length calculation

This commit is contained in:
Alexandr Prenko 2010-05-22 00:32:48 +03:00 committed by Slava Zanko
parent fc0a3ebe93
commit 738fed4ffb

View File

@ -234,7 +234,7 @@ sub print_string($)
# Skip empty strings
if ($buffer ne '')
{
$len = length($buffer);
$len = string_len($buffer);
# Words are separated by spaces
if ($col > 0)
{