diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-23 19:12:46 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 21:54:21 (GMT) |
commit | c7c38309e4709b4cce4b9c6373e7f1dd7d2d8c8c (patch) | |
tree | 362399f10d09c53e71f2ef212f2ad8f6d4752185 /drivers | |
parent | b852ba7d38a210b2d23c514f191582033b371e89 (diff) | |
download | linux-fsl-qoriq-c7c38309e4709b4cce4b9c6373e7f1dd7d2d8c8c.tar.xz |
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 <daniel.krueger@systec-electronic.com>
Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/epl/SharedBuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/epl/SharedBuff.c b/drivers/staging/epl/SharedBuff.c index d88afc0..2b10c37 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++) { |