From 8828d629f434ed2fd689350a60723fffeb79a088 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 4 May 2009 18:11:49 +0200 Subject: [PATCH] image: do not return update Signed-off-by: Julien Danjou --- image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image.c b/image.c index 718ae194e..2684f6b08 100644 --- a/image.c +++ b/image.c @@ -396,7 +396,7 @@ luaA_image_draw_line(lua_State *L) return 0; imlib_context_set_color(color.red, color.green, color.blue, color.alpha); - imlib_image_draw_line(x1, y1, x2, y2, 1); + imlib_image_draw_line(x1, y1, x2, y2, 0); image_compute(image); return 0; }