ports/x11/xplot/patches/patch-xplot_h

15 lines
283 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: xplot.h
--- xplot.h.orig
+++ xplot.h
@@ -59,8 +59,8 @@ double rint(); /* YMUL! some versions of ultrix om
/* Coordinate type definitions */
typedef union coord_u {
- int i;
- unsigned int u;
+ long i;
+ unsigned long u;
struct timeval t;
double d;
} coord;