We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32235b2 commit 4747728Copy full SHA for 4747728
3 files changed
ais_charset.c
@@ -1,3 +1,3 @@
1
#include "ais_charset.h"
2
3
-char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
+char ais_charset[66] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
ais_charset.h
@@ -1,6 +1,6 @@
#ifndef AIS_CHARSET_H
#define AIS_CHARSET_H
4
-extern char ais_charset[64];
+extern char ais_charset[66];
5
6
#endif
interactive.c
@@ -140,7 +140,7 @@ void interactiveShowData(void) {
140
static bool need_clear = true;
141
uint64_t now = mstime();
142
char progress;
143
- char spinner[4] = "|/-\\";
+ char spinner[5] = "|/-\\";
144
int valid = 0;
145
double signalMax = -100.0;
146
double signalMin = +100.0;
0 commit comments