From 556724f050654ade96af995af0fac4b24529bd21 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 12 Dec 2006 21:04:19 +0000 Subject: [PATCH] Fixed warning. --- src/iocsh/iocsh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iocsh/iocsh.cpp b/src/iocsh/iocsh.cpp index 964807555..1acdaffcc 100644 --- a/src/iocsh/iocsh.cpp +++ b/src/iocsh/iocsh.cpp @@ -908,7 +908,7 @@ static void exitCallFunc(const iocshArgBuf *) static void localRegister (void) { - iocshRegister(&commentFuncDef,helpCallFunc); + iocshRegister(&commentFuncDef,commentCallFunc); iocshRegister(&exitFuncDef,exitCallFunc); iocshRegister(&helpFuncDef,helpCallFunc); iocshRegister(&iocshCmdFuncDef,iocshCmdCallFunc);