summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDawid Wolosowicz <d@1823.pl>2021-04-03 19:46:30 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-04 00:38:02 +0200
commitf05cca7a9a4f4206f68b0f5d029b7c09293816d9 (patch)
treed89ef5dbb367c0e8b15c610a488278228469820a
parent340e1f4b2839e045b155f83f8a9b5a280035e1e4 (diff)
downloadserenity-f05cca7a9a4f4206f68b0f5d029b7c09293816d9.zip
Spreadsheet: Declare the extern GML variable as an array, not a pointer
Part of #5906 Fixes #5943
-rw-r--r--Userland/Applications/Spreadsheet/ExportDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/ExportDialog.cpp b/Userland/Applications/Spreadsheet/ExportDialog.cpp
index dd922020d7..06fd015462 100644
--- a/Userland/Applications/Spreadsheet/ExportDialog.cpp
+++ b/Userland/Applications/Spreadsheet/ExportDialog.cpp
@@ -49,7 +49,7 @@
#include <unistd.h>
// This is defined in ImportDialog.cpp, we can't include it twice, since the generated symbol is exported.
-extern const char* select_format_page_gml;
+extern const char select_format_page_gml[];
namespace Spreadsheet {