1
1

(get_paragraph): fix of pointer difference.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2011-10-09 21:07:39 +04:00 коммит произвёл Slava Zanko
родитель 6ce562381c
Коммит 9ac22ec544

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

@ -184,7 +184,8 @@ get_paragraph (WEdit * edit, long p, long q, int indent, int *size)
p++;
*s = edit_get_byte (edit, p);
}
*size = (unsigned long) s - (unsigned long) t;
*size = (unsigned long) (s - t);
/* FIXME: all variables related to 'size' should be fixed */
t[*size] = '\n';
return t;
}