From 723289ad73d482d7ad2df565a29f473e687ad2c3 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Wed, 15 Oct 2008 18:33:33 +0000 Subject: [PATCH] Correct error in debug statement. --- motorApp/MicosSrc/drvMicos.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motorApp/MicosSrc/drvMicos.cc b/motorApp/MicosSrc/drvMicos.cc index a1dbac5d..f7cc8fd0 100644 --- a/motorApp/MicosSrc/drvMicos.cc +++ b/motorApp/MicosSrc/drvMicos.cc @@ -316,7 +316,7 @@ static RTN_STATUS send_mess(int card, const char *com, char *name) if (size == 0) return(OK); cntrl = (struct MicosController *) motor_state[card]->DevicePrivate; - Debug(2, "send_mess: sending message to card %d, message=%s\n", card, buff); + Debug(2, "send_mess: sending message to card %d, message=%s\n", card, com); cntrl = (struct MicosController *) motor_state[card]->DevicePrivate; pasynOctetSyncIO->write(cntrl->pasynUser, com, size, COMM_TIMEOUT, &nwrite);