1
1

Fixed view of console contents via cons.saver.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2010-07-01 10:59:54 +04:00
родитель 442650239c
Коммит 7570f49906

Просмотреть файл

@ -94,10 +94,11 @@ send_contents (char *buffer, unsigned int columns, unsigned int rows)
end_line = lastline;
lc_index = (end_line - begin_line) * columns;
bytes = lc_index;
if (write (1, &bytes, 2) != 2)
return;
if (!bytes)
if (bytes == 0)
return;
p = outbuf;