Skip to content

Commit 4747728

Browse files
committed
Fix compilation with GCC15
1 parent 32235b2 commit 4747728

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ais_charset.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#include "ais_charset.h"
22

3-
char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
3+
char ais_charset[66] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";

ais_charset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef AIS_CHARSET_H
22
#define AIS_CHARSET_H
33

4-
extern char ais_charset[64];
4+
extern char ais_charset[66];
55

66
#endif

interactive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void interactiveShowData(void) {
140140
static bool need_clear = true;
141141
uint64_t now = mstime();
142142
char progress;
143-
char spinner[4] = "|/-\\";
143+
char spinner[5] = "|/-\\";
144144
int valid = 0;
145145
double signalMax = -100.0;
146146
double signalMin = +100.0;

0 commit comments

Comments
 (0)