From: John Darrington <john@darrington.wattle.id.au>
Date: Sun, 13 Mar 2016 08:54:36 +0000 (+0100)
Subject: spreadsheet-reader.c: Do not export local symbols
X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d003a452a6fb6eef9ea6cac397355004702ec70;p=pspp

spreadsheet-reader.c: Do not export local symbols
---

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 <stdlib.h>
 
 #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