File dump1090-fix-gcc15.patch of Package dump1090-fa
diff -Naur a/ais_charset.c b/ais_charset.c
--- a/ais_charset.c 2025-05-19 10:48:01.000000000 -0500
+++ b/ais_charset.c 2025-06-21 11:38:51.394520681 -0500
@@ -1,3 +1,3 @@
#include "ais_charset.h"
-char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
+char ais_charset[65] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
diff -Naur a/ais_charset.h b/ais_charset.h
--- a/ais_charset.h 2025-05-19 10:48:01.000000000 -0500
+++ b/ais_charset.h 2025-06-21 11:39:03.514572697 -0500
@@ -1,6 +1,6 @@
#ifndef AIS_CHARSET_H
#define AIS_CHARSET_H
-extern char ais_charset[64];
+extern char ais_charset[65];
#endif
diff -Naur a/interactive.c b/interactive.c
--- a/interactive.c 2025-05-19 10:48:01.000000000 -0500
+++ b/interactive.c 2025-06-21 11:39:47.521761569 -0500
@@ -140,7 +140,7 @@
static bool need_clear = true;
uint64_t now = mstime();
char progress;
- char spinner[4] = "|/-\\";
+ char spinner[5] = "|/-\\";
int valid = 0;
double signalMax = -100.0;
double signalMin = +100.0;