From: Jean-Philippe Orsini Date: Wed, 24 Sep 2014 11:05:36 +0000 (+0200) Subject: static consts X-Git-Tag: v1.2.0~138 X-Git-Url: http://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=27bc2000311632fce564c1c5dffa4e26ac1abd2a static consts --- 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;