mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
14 lines
309 B
Diff
14 lines
309 B
Diff
Fix -Wliteral-suffix (#731886)
|
|
|
|
--- a/BasicExcel.cpp
|
|
+++ b/BasicExcel.cpp
|
|
@@ -4913,7 +4913,7 @@
|
|
do
|
|
{
|
|
char sname[50];
|
|
- sprintf(sname, "Sheet"FMT_SIZE_T, sheetNo++);
|
|
+ sprintf(sname, "Sheet" FMT_SIZE_T, sheetNo++);
|
|
yesheet = AddWorksheet(sname, sheetIndex);
|
|
} while (!yesheet);
|
|
return yesheet;
|