From 1b44f44822fe566d3cd153464ba66200462db5b8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 23 Aug 2016 20:11:12 +0200 Subject: [PATCH] Buildfix --- libretro-common/formats/png/rpng_encode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/formats/png/rpng_encode.c b/libretro-common/formats/png/rpng_encode.c index 7f5b8e2d03..28a76b447b 100644 --- a/libretro-common/formats/png/rpng_encode.c +++ b/libretro-common/formats/png/rpng_encode.c @@ -31,7 +31,7 @@ #undef GOTO_END_ERROR #define GOTO_END_ERROR() do { \ - sceClibPrintf("[RPNG]: Error in line %d.\n", __LINE__); \ + fprintf(stderr, "[RPNG]: Error in line %d.\n", __LINE__); \ ret = false; \ goto end; \ } while(0)