We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d3a01f commit 480dee6Copy full SHA for 480dee6
ais_charset.c
@@ -1,3 +1,3 @@
1
#include "ais_charset.h"
2
3
-char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
+__attribute__((nonstring)) char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
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] = "|/-\\";
+ __attribute__((nonstring)) char spinner[4] = "|/-\\";
144
int valid = 0;
145
double signalMax = -100.0;
146
double signalMin = +100.0;
0 commit comments