From 27a6a076c4eb251e5ec3fd0a23b59f080e19331a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 11:57:07 +0200 Subject: [PATCH] avoid to use 0 instead of NULL --- src/graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph.c b/src/graph.c index 792bb25..b64e3f7 100644 --- a/src/graph.c +++ b/src/graph.c @@ -252,7 +252,7 @@ static void draw_background_lines(cairo_t *cr, cairo_stroke(cr); /* back to normal line style */ - cairo_set_dash(cr, 0, 0, 0); + cairo_set_dash(cr, NULL, 0, 0); } /* Keys: sensor identifier. -- 2.7.4