From: Greg Kroah-Hartman Date: Mon, 23 Mar 2009 19:12:46 +0000 (-0700) Subject: Staging: epl: remove compiler warning from SharedBuff.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c7c38309e4709b4cce4b9c6373e7f1dd7d2d8c8c;p=linux-beck.git Staging: epl: remove compiler warning from SharedBuff.c Yeah, it's a buffer, but this sure can't hurt as it's not easy to unwind where it's coming from. Cc: Daniel Krueger Cc: Ronald Sieber Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/epl/SharedBuff.c b/drivers/staging/epl/SharedBuff.c index d88afc01e951..2b10c375f3e6 100644 --- a/drivers/staging/epl/SharedBuff.c +++ b/drivers/staging/epl/SharedBuff.c @@ -1604,7 +1604,7 @@ tShbError ShbTraceDump(const unsigned char *pabStartAddr_p, ulBuffSize = ulDataSize_p; if (pszInfoText_p != NULL) { - TRACE0(pszInfoText_p); + TRACE1("%s", pszInfoText_p); } // dump buffer contents for (nRow = 0;; nRow++) {