From 2e35ee986e9e6d90766cb778b3946807b33472b4 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 25 Sep 2008 16:35:56 +0000 Subject: [PATCH] Oops, use a unique name... --- src/dev/softDev/devSoStdio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dev/softDev/devSoStdio.c b/src/dev/softDev/devSoStdio.c index 714bf6829..588077755 100644 --- a/src/dev/softDev/devSoStdio.c +++ b/src/dev/softDev/devSoStdio.c @@ -50,7 +50,7 @@ static long init(int pass) return 0; } -static long write(stringoutRecord *prec) +static long write_string(stringoutRecord *prec) { if (prec->dpvt) fprintf((FILE *)prec->dpvt, "%s\n", prec->val); @@ -62,6 +62,6 @@ static struct { dset common; DEVSUPFUN write; } devSoStdio = { - {5, NULL, init, NULL, NULL}, write + {5, NULL, init, NULL, NULL}, write_string }; epicsExportAddress(dset, devSoStdio);