summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-05-04 21:00:59 +0000
committerJames Bursa <james@netsurf-browser.org>2005-05-04 21:00:59 +0000
commit9ccfab8705fc0aa696b84cee83a6f2dfef11b2ba (patch)
tree9fe989cd4183f2c336934c0f360b44f40ceb05a7 /debug
parentf21abddae39fd96462986d3998dee4cc12a30adc (diff)
downloadnetsurf-9ccfab8705fc0aa696b84cee83a6f2dfef11b2ba.tar.gz
netsurf-9ccfab8705fc0aa696b84cee83a6f2dfef11b2ba.tar.bz2
[project @ 2005-05-04 21:00:59 by bursa]
Fix debug build. svn path=/import/netsurf/; revision=1713
Diffstat (limited to 'debug')
-rw-r--r--debug/debug_bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/debug_bitmap.c b/debug/debug_bitmap.c
index a4a7021ce..bd724e0a0 100644
--- a/debug/debug_bitmap.c
+++ b/debug/debug_bitmap.c
@@ -32,7 +32,7 @@ struct bitmap {
* \return an opaque struct bitmap, or NULL on memory exhaustion
*/
-struct bitmap *bitmap_create(int width, int height)
+struct bitmap *bitmap_create(int width, int height, bool clear)
{
struct bitmap *bitmap;
bitmap = calloc(sizeof *bitmap + width * height * 4, 1);