summaryrefslogtreecommitdiff
path: root/frontends/monkey/bitmap.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-11-03 15:12:27 +0000
committerVincent Sanders <vince@kyllikki.org>2018-11-03 15:12:50 +0000
commit6ff3238825f21e0abec37b1d485318648d824cab (patch)
tree489406862f83738f0304d364666096fccc5cf610 /frontends/monkey/bitmap.c
parent4fcb6eb3016de68b4a742cd6b4d2248550529deb (diff)
downloadnetsurf-6ff3238825f21e0abec37b1d485318648d824cab.tar.gz
netsurf-6ff3238825f21e0abec37b1d485318648d824cab.tar.bz2
centralise monkey output generation
Diffstat (limited to 'frontends/monkey/bitmap.c')
-rw-r--r--frontends/monkey/bitmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontends/monkey/bitmap.c b/frontends/monkey/bitmap.c
index 83b8566b6..e53b565d1 100644
--- a/frontends/monkey/bitmap.c
+++ b/frontends/monkey/bitmap.c
@@ -23,6 +23,7 @@
#include "utils/errors.h"
#include "netsurf/bitmap.h"
+#include "monkey/output.h"
#include "monkey/bitmap.h"
struct bitmap {
@@ -127,7 +128,7 @@ static int bitmap_get_height(void *bitmap)
static nserror bitmap_render(struct bitmap *bitmap,
struct hlcache_handle *content)
{
- fprintf(stdout, "GENERIC BITMAP RENDER\n");
+ moutf(MOUT_GENERIC, "BITMAP RENDER");
return NSERROR_OK;
}