From 27bc2000311632fce564c1c5dffa4e26ac1abd2a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 13:05:36 +0200 Subject: [PATCH] static consts --- src/graph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graph.c b/src/graph.c index b64e3f7..aa473f1 100644 --- a/src/graph.c +++ b/src/graph.c @@ -31,9 +31,9 @@ #include /* horizontal padding */ -const int GRAPH_H_PADDING = 4; +static const int GRAPH_H_PADDING = 4; /* vertical padding */ -const int GRAPH_V_PADDING = 4; +static const int GRAPH_V_PADDING = 4; bool is_smooth_curves_enabled; -- 2.7.4