From 04fec42a7d37ca87c9ffd7b36b0f5bfc35253ee6 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Fri, 23 May 2003 19:48:44 +0000 Subject: [PATCH] send_mess() tests for NULL, not '0'. --- motorApp/MotorSrc/motordrvCom.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/motorApp/MotorSrc/motordrvCom.cc b/motorApp/MotorSrc/motordrvCom.cc index f2afad84..c8eca2a0 100644 --- a/motorApp/MotorSrc/motordrvCom.cc +++ b/motorApp/MotorSrc/motordrvCom.cc @@ -3,9 +3,9 @@ FILENAME... motordrvCom.c USAGE... This file contains driver functions that are common to all motor record driver modules. -Version: $Revision: 1.2 $ +Version: $Revision: 1.3 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2002-10-31 20:45:17 $ +Last Modified: $Date: 2003-05-23 19:48:44 $ */ /* @@ -266,7 +266,7 @@ static void process_messages(struct driver_table *tabptr, epicsTime tick) char axis_name; if (tabptr->axis_names == NULL) - axis_name = '0'; + axis_name = NULL; else axis_name = tabptr->axis_names[axis];