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

@ -100,7 +100,7 @@ void interactiveShowData(void) {
static uint64_t next_update;
uint64_t now = mstime();
char progress;
char spinner[4] = "|/-\\";
char spinner[4] = {'|', '/', '-', '\\'};
// Refresh screen every (MODES_INTERACTIVE_REFRESH_TIME) miliseconde
if (now < next_update)