From 0d811963c1498aa625b5438bf66dbb677a0d4494 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 28 May 2015 17:06:18 +0100 Subject: fixup all the remaining logging macro callsites The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up --- image/nssprite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'image') diff --git a/image/nssprite.c b/image/nssprite.c index 9ec0b9fec..c0c6ff1b9 100644 --- a/image/nssprite.c +++ b/image/nssprite.c @@ -45,10 +45,10 @@ typedef struct nssprite_content { #define ERRCHK(x) do { \ rosprite_error err = x; \ if (err == ROSPRITE_EOF) { \ - LOG(("Got ROSPRITE_EOF when loading sprite file")); \ + LOG("Got ROSPRITE_EOF when loading sprite file"); \ return false; \ } else if (err == ROSPRITE_BADMODE) { \ - LOG(("Got ROSPRITE_BADMODE when loading sprite file")); \ + LOG("Got ROSPRITE_BADMODE when loading sprite file"); \ return false; \ } else if (err == ROSPRITE_OK) { \ } else { \ -- cgit v1.2.3