Remove development printf() statements

This commit is contained in:
Andrew Johnson
2014-08-24 23:48:32 -05:00
parent 2d4243981f
commit 4a5a675ef8

View File

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