From d6faaa593ab05bb35fea77820f5b117de1b342cb Mon Sep 17 00:00:00 2001 From: Mark Koennecke Date: Wed, 25 Jun 2014 08:46:54 +0200 Subject: [PATCH] - Removed trim in sicsget: caused line breaks in text to disappear which was not desired --- sicsget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sicsget.c b/sicsget.c index bcb20a37..931cabbf 100644 --- a/sicsget.c +++ b/sicsget.c @@ -81,7 +81,7 @@ static int SICSGetCommand(SConnection * pCon, SicsInterp * pSics, void *pData, if(status){ data = formatValue(v,NULL); if(data != NULL){ - SCPrintf(pCon,eValue,"%s",trim(GetCharArray(data))); + SCWrite(pCon,GetCharArray(data),eValue); DeleteDynString(data); } else { SCPrintf(pCon,eError,"ERROR: formatting value for %s failed", argv[1]);