[LyX/master] Fix sign mismatch introduced with 8e60fcf530166

Juergen Spitzmueller spitz at lyx.org
Fri Apr 10 06:40:03 UTC 2020


commit b351910478cc6f4988de2ce90b7dbcc1db4de267
Author: Juergen Spitzmueller <spitz at lyx.org>
Date:   Fri Apr 10 09:00:19 2020 +0200

    Fix sign mismatch introduced with 8e60fcf530166
---
 3rdparty/dtl/dt2dv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/3rdparty/dtl/dt2dv.c b/3rdparty/dtl/dt2dv.c
index 07f73dc..532426b 100644
--- a/3rdparty/dtl/dt2dv.c
+++ b/3rdparty/dtl/dt2dv.c
@@ -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];


More information about the lyx-cvs mailing list