fix an ancient bug (typo `!=' versus `=!')

This commit is contained in:
rlar 2010-11-23 19:22:57 +00:00
parent bda8dfa2c6
commit 5ea63abb47
2 changed files with 6 additions and 2 deletions

View File

@ -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 ,

View File

@ -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;
}