Browse Source

(int) cast, where size can be expected to be small enough

rlar 15 years ago
parent
commit
f8b4c7eb79
  1. 4
      ChangeLog
  2. 2
      src/xspice/ipc/ipcstdio.c

4
ChangeLog

@ -1,3 +1,7 @@
2011-07-24 Robert Larice
* src/xspice/ipc/ipcstdio.c :
(int) cast, where size can be expected to be small enough
2011-07-24 Robert Larice
* src/misc/util.c :
use size_t

2
src/xspice/ipc/ipcstdio.c

@ -46,7 +46,7 @@ Ipc_Status_t ipc_transport_get_line (
printf ("GET_LINE\n");
gets (str);
*len = strlen (str);
*len = (int) strlen (str);
return IPC_STATUS_OK;
}

Loading…
Cancel
Save