diff options
Diffstat (limited to 'stdio/linewrap.c')
-rw-r--r-- | stdio/linewrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio/linewrap.c b/stdio/linewrap.c index a5822c4845..d91f3a4bc2 100644 --- a/stdio/linewrap.c +++ b/stdio/linewrap.c @@ -169,7 +169,7 @@ lwupdate (FILE *stream, int c, struct line_wrap_data **wrapper_cookie) the end of the buffer. */ nl = stream->__bufp; } - else if (d->point_col + (nl - buf) < d->rmargin) + else if ((size_t) d->point_col + (nl - buf) < d->rmargin) { /* The buffer contains a full line that fits within the maximum line width. Reset point and scan the next line. */ |