Updated to nixos 26.05

Change array initializers to shut up -Wno-unterminated-string-initialization
This commit is contained in:
Sebastian 2026-05-30 20:08:31 +02:00
parent cd104a7ecc
commit 64af7caae5
4 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,8 @@
#include "ais_charset.h"
char ais_charset[64] = "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_ !\"#$%&'()*+,-./0123456789:;<=>?";
char ais_charset[64] = {'@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', ' ',
'!', '\"', '#', '$', '%', '&', '\'', '(', ')', '*', '+',
',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6',
'7', '8', '9', ':', ';', '<', '=', '>', '?'};