From f42e71eef8770f47025139497fb52dd1e29204e4 Mon Sep 17 00:00:00 2001 From: tappro Date: Thu, 7 Dec 2006 15:55:55 +0000 Subject: [PATCH] fix wrong print format --- lustre/cmm/mdc_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/cmm/mdc_device.c b/lustre/cmm/mdc_device.c index a869c93..63fc718 100644 --- a/lustre/cmm/mdc_device.c +++ b/lustre/cmm/mdc_device.c @@ -59,10 +59,10 @@ static int mdc_obd_update(struct obd_device *host, LASSERT(mc != NULL); CDEBUG(D_CONFIG, "notify %s ev=%d\n", watched->obd_name, ev); if (ev == OBD_NOTIFY_ACTIVE) { - CDEBUG(D_INFO|D_WARNING, "Device %s is active now: "LPX64"\n", + CDEBUG(D_INFO|D_WARNING, "Device %s is active now\n", watched->obd_name); } else if (ev == OBD_NOTIFY_INACTIVE) { - CDEBUG(D_INFO|D_WARNING, "Device %s is inactive now: "LPX64"\n", + CDEBUG(D_INFO|D_WARNING, "Device %s is inactive now\n", watched->obd_name); } else if (ev == OBD_NOTIFY_OCD) { struct obd_connect_data *conn_data = -- 1.8.3.1