fix an ancient bug (typo `!=' versus `=!')
This commit is contained in:
parent
bda8dfa2c6
commit
5ea63abb47
|
|
@ -1,3 +1,7 @@
|
|||
2010-11-23 Robert Larice
|
||||
* src/xspice/ipc/ipcaegis.c :
|
||||
fix an ancient bug (typo `!=' versus `=!')
|
||||
|
||||
2010-11-23 Robert Larice
|
||||
* src/spicelib/analysis/cktsopt.c ,
|
||||
* src/spicelib/analysis/dctrcurv.c ,
|
||||
|
|
|
|||
|
|
@ -254,8 +254,8 @@ Ipc_Status_t ipc_transport_terminate_server ()
|
|||
|
||||
do {
|
||||
status = ipc_transport_get_line (buffer, &len, IPC_WAIT);
|
||||
} while ((status =! IPC_STATUS_ERROR) &&
|
||||
(status =! IPC_STATUS_EOF));
|
||||
} while ((status != IPC_STATUS_ERROR) &&
|
||||
(status != IPC_STATUS_EOF));
|
||||
return status;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue