[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gEDA: Icarus Verilog Snapshot 20030329
When I compiled this, I got the following warning:
sys_display.c:295: warning: field width is not type int (arg 3)
and the warning went away if I did:
--- vpi/sys_display.c.orig Tue Mar 11 22:11:00 2003
+++ vpi/sys_display.c
@@ -31,7 +31,7 @@
struct timeformat_info_s {
int units;
- unsigned prec;
+ int prec;
char*suff;
unsigned width;
};
but I didn't really look carefully to see if this is a correct patch.
-Dan