From: rread Date: Thu, 20 Jun 2002 22:30:16 +0000 (+0000) Subject: fix for older versions of gcc X-Git-Tag: 0.4.2~106 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=799ea7c027cf1136a59753e3fa7ad0243f42bf23;p=fs%2Flustre-release.git fix for older versions of gcc --- diff --git a/lustre/include/linux/lustre_dlm.h b/lustre/include/linux/lustre_dlm.h index 0eb64d5..455af80 100644 --- a/lustre/include/linux/lustre_dlm.h +++ b/lustre/include/linux/lustre_dlm.h @@ -183,7 +183,7 @@ extern struct obd_ops ldlm_obd_ops; do { \ CDEBUG(D_DLMTRACE, "### " format \ " (%s: lock %p mode %d/%d on res %Lu (rc %d) " \ - " type %d remote %Lx)\n", ## a, \ + " type %d remote %Lx)\n" , ## a, \ lock->l_resource->lr_namespace->ns_name, lock, \ lock->l_granted_mode, lock->l_req_mode, \ lock->l_resource->lr_name[0], \ @@ -193,7 +193,7 @@ do { \ } while (0) #define LDLM_DEBUG_NOLOCK(format, a...) \ - CDEBUG(D_DLMTRACE, "### " format "\n", ## a); + CDEBUG(D_DLMTRACE, "### " format "\n" , ## a); /* ldlm_extent.c */