]> granicus.if.org Git - graphviz/commitdiff
gvpr: squash -Wconversion warning from 'read' return
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 16 May 2022 04:31:25 +0000 (21:31 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 24 May 2022 04:33:08 +0000 (21:33 -0700)
This call is asked to read an `int` length of bytes, so cannot return more than
`INT_MAX`.

lib/gvpr/compile.c

index 24083bae46b1791d68eb32ffcb9fac6e3fcbe712..a7fe27bf51ef85acc73820b5e3707f7437e26bac 100644 (file)
@@ -63,7 +63,7 @@ static Sflong_t ptr2int(const void *p) {
 
 static int iofread(void *chan, char *buf, int bufsize)
 {
-    return read(sffileno(chan), buf, bufsize);
+    return (int)read(sffileno(chan), buf, bufsize);
 }
 
 static int ioflush(void *chan)