From 50b0a5c4a777618b68e03df3057428ea2c2d5bf1 Mon Sep 17 00:00:00 2001 From: zolliker Date: Fri, 27 Mar 2009 15:16:16 +0000 Subject: [PATCH] remove eLogError and eLog in one place --- exebuf.c | 2 +- remob.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exebuf.c b/exebuf.c index 635f5c7b..0380a7df 100644 --- a/exebuf.c +++ b/exebuf.c @@ -230,7 +230,7 @@ int exeBufProcess(pExeBuf self, SicsInterp * pSics, Tcl Error */ if (strlen(pTcl->result) >= 2) { - SCPrintf(pCon, eLogError, "ERROR: Tcl reported: %s", + SCPrintf(pCon, eError, "ERROR: Tcl reported: %s", pTcl->result); } } else { diff --git a/remob.c b/remob.c index f3b7d782..1e05602e 100644 --- a/remob.c +++ b/remob.c @@ -169,7 +169,7 @@ static int RemHandle(RemServer * remserver) static void RemCopy(RemChannel * rc, SConnection * pCon) { if (pCon != NULL && rc->line[0] != '\0') { - SCPrintf(pCon, eLog, " %s", rc->line); + SCPrintf(pCon, eWarning, " %s", rc->line); } }