From 4a5a675ef850ec61bb06f177f24334cd986aa037 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 24 Aug 2014 23:48:32 -0500 Subject: [PATCH] Remove development printf() statements --- src/ioc/db/dbFastLinkConv.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ioc/db/dbFastLinkConv.c b/src/ioc/db/dbFastLinkConv.c index 27f21fb15..f98c4b365 100644 --- a/src/ioc/db/dbFastLinkConv.c +++ b/src/ioc/db/dbFastLinkConv.c @@ -201,7 +201,6 @@ static long cvt_st_q( const dbAddr *paddr) { char *end; -printf("cvt_st_q('%s')\n", from); if (*from == 0) { *to = 0; @@ -922,7 +921,6 @@ static long cvt_q_q( epicsInt64 *to, const dbAddr *paddr) { -printf("cvt_q_q(%lld)\n", *from); *to=*from; return(0); } @@ -932,7 +930,6 @@ static long cvt_q_uq( epicsUInt64 *to, const dbAddr *paddr) { -printf("cvt_q_qq(%lld)\n", *from); *to=*from; return(0); }