From 0cabf024d72a13db56dde8c187518d67d5b453c2 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 21 Jan 2009 20:26:52 +0000 Subject: [PATCH] Error message has the wrong routine name in it. --- src/dbStatic/dbStaticRun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbStatic/dbStaticRun.c b/src/dbStatic/dbStaticRun.c index ef858adf5..50964839b 100644 --- a/src/dbStatic/dbStaticRun.c +++ b/src/dbStatic/dbStaticRun.c @@ -161,7 +161,7 @@ long dbAllocRecord(DBENTRY *pdbentry,const char *precordName) if(!pdbRecordType) return(S_dbLib_recordTypeNotFound); if(!precnode) return(S_dbLib_recNotFound); if(pdbRecordType->rec_size == 0) { - printf("\t*** Did you run x_RegisterDeviceDriver(pdbbase) yet? ***\n"); + printf("\t*** Did you run x_RegisterRecordDeviceDriver(pdbbase) yet? ***\n"); epicsPrintf("dbAllocRecord(%s) with %s rec_size = 0\n", precordName, pdbRecordType->name); return(S_dbLib_noRecSup);