From 5ea63abb47d44303ec3d081cc34ac5518ce7a81e Mon Sep 17 00:00:00 2001 From: rlar Date: Tue, 23 Nov 2010 19:22:57 +0000 Subject: [PATCH] fix an ancient bug (typo `!=' versus `=!') --- ChangeLog | 4 ++++ src/xspice/ipc/ipcaegis.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c64feeeaa..5658af7d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 , diff --git a/src/xspice/ipc/ipcaegis.c b/src/xspice/ipc/ipcaegis.c index 607530cc5..d61500a88 100755 --- a/src/xspice/ipc/ipcaegis.c +++ b/src/xspice/ipc/ipcaegis.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; }