summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
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);