From 2d003a452a6fb6eef9ea6cac397355004702ec70 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 13 Mar 2016 09:54:36 +0100 Subject: [PATCH] spreadsheet-reader.c: Do not export local symbols --- src/data/spreadsheet-reader.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/data/spreadsheet-reader.c b/src/data/spreadsheet-reader.c index f5a138064e..b83dc34602 100644 --- a/src/data/spreadsheet-reader.c +++ b/src/data/spreadsheet-reader.c @@ -30,15 +30,15 @@ #include #ifdef ODF_READ_SUPPORT -const bool ODF_READING_SUPPORTED = true; +static const bool ODF_READING_SUPPORTED = true; #else -const bool ODF_READING_SUPPORTED = false; +static const bool ODF_READING_SUPPORTED = false; #endif #ifdef GNM_READ_SUPPORT -const bool GNM_READING_SUPPORTED = true; +static const bool GNM_READING_SUPPORTED = true; #else -const bool GNM_READING_SUPPORTED = false; +static const bool GNM_READING_SUPPORTED = false; #endif void -- 2.30.2