]> git.lyx.org Git - features.git/commitdiff
Fix sign mismatch introduced with 8e60fcf530166
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 10 Apr 2020 07:00:19 +0000 (09:00 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 13:48:55 +0000 (15:48 +0200)
3rdparty/dtl/dt2dv.c

index 07f73dcdbcb1144c0a20e34b53d3727b073b94d7..532426b7306639e6e339f9d03a31870809afe969 100644 (file)
@@ -43,7 +43,7 @@ typedef struct
   size_t max;   /* capacity of buf */
   S4 wrote;     /* number of characters written into buf */
   size_t read;  /* position in buf of next character to read from buf */
-  unsigned char * buf;   /* line buffer */
+  char * buf;   /* line buffer */
 } Line;
 
 char linebuf[MAXLINE+1];