From afe27002eeecdd15604d55896dd3b756f042b4aa Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 10 Nov 2015 16:15:20 +0100 Subject: ps: mark local symbols static --- src/bin/ps/main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/bin/ps/main.c b/src/bin/ps/main.c index 92c29a7..48e8a4b 100644 --- a/src/bin/ps/main.c +++ b/src/bin/ps/main.c @@ -23,15 +23,15 @@ #endif -SpectreDocument *psdoc; -int page_count; +static SpectreDocument *psdoc; +static int page_count; -SpectrePage *page; +static SpectrePage *page; -int width = 0; -int height = 0; -void *data = NULL; -double dpi = -1.0; +static int width = 0; +static int height = 0; +static void *data = NULL; +static double dpi = -1.0; #define DEF_DPI 72.0 -- cgit v1.2.1