Browse Source

Fix some more -Wextra warnings.

Fix to inpcom.c removed by HVO
pre-master-46
Brian Taylor 10 months ago
committed by Holger Vogt
parent
commit
1b39cf9025
  1. 2
      src/frontend/resource.c
  2. 6
      src/xspice/icm/digital/d_tristate/cfunc.mod
  3. 2
      src/xspice/mif/mifgetvalue.c

2
src/frontend/resource.c

@ -550,6 +550,7 @@ static int get_sysmem(struct sys_mem *memall)
#else #else
# ifdef notdef
#include <signal.h> #include <signal.h>
#include <setjmp.h> #include <setjmp.h>
@ -625,6 +626,7 @@ baseaddr(void)
#endif #endif
} }
#endif
#endif #endif

6
src/xspice/icm/digital/d_tristate/cfunc.mod

@ -238,10 +238,12 @@ void cm_d_tristate(ARGS)
if (idp[1].when <= TIME) { if (idp[1].when <= TIME) {
if (str == out->strength) { if (str == out->strength) {
s_ctl = Idle; s_ctl = Idle;
idp[1].prev = str;
// quietly rude
idp[1].prev = (Digital_State_t)str;
} else { } else {
s_ctl = Normal; s_ctl = Normal;
idp[1].prev = out->strength;
// quietly rude
idp[1].prev = (Digital_State_t)out->strength;
idp[1].when = TIME + OUTPUT_DELAY(out); idp[1].when = TIME + OUTPUT_DELAY(out);
} }
} else { } else {

2
src/xspice/mif/mifgetvalue.c

@ -108,7 +108,7 @@ static char *get_string(char **s, int is_array, Mif_Token_Type_t *token_type)
end = *s; end = *s;
ret_str = copy_substring(beg, end); ret_str = copy_substring(beg, end);
} }
*token_type = MIF_STRING;
*token_type = MIF_STRING_TOK;
return ret_str; return ret_str;
} }

Loading…
Cancel
Save