From f05cca7a9a4f4206f68b0f5d029b7c09293816d9 Mon Sep 17 00:00:00 2001 From: Dawid Wolosowicz Date: Sat, 3 Apr 2021 19:46:30 +0200 Subject: [PATCH] Spreadsheet: Declare the extern GML variable as an array, not a pointer Part of #5906 Fixes #5943 --- Userland/Applications/Spreadsheet/ExportDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 // 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 {