mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix sign mismatch introduced with 8e60fcf530
This commit is contained in:
parent
00a6ad4b66
commit
b351910478
2
3rdparty/dtl/dt2dv.c
vendored
2
3rdparty/dtl/dt2dv.c
vendored
@ -43,7 +43,7 @@ typedef struct
|
|||||||
size_t max; /* capacity of buf */
|
size_t max; /* capacity of buf */
|
||||||
S4 wrote; /* number of characters written into buf */
|
S4 wrote; /* number of characters written into buf */
|
||||||
size_t read; /* position in buf of next character to read from buf */
|
size_t read; /* position in buf of next character to read from buf */
|
||||||
unsigned char * buf; /* line buffer */
|
char * buf; /* line buffer */
|
||||||
} Line;
|
} Line;
|
||||||
|
|
||||||
char linebuf[MAXLINE+1];
|
char linebuf[MAXLINE+1];
|
||||||
|
Loading…
Reference in New Issue
Block a user