From 4c10bb6b9f1d4086572cb3beed1ae95cc96e3c5b Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Mon, 24 Nov 2025 21:30:15 +0100 Subject: [PATCH] name of yellownotes turned around, makes it easier to monitor them --- yellownotes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yellownotes.cpp b/yellownotes.cpp index ee5c90a..1a3d9c0 100644 --- a/yellownotes.cpp +++ b/yellownotes.cpp @@ -835,7 +835,7 @@ void YellowNotes::newNote(void *sender) char buf[200]; int r = rand() % 1000; - sprintf(buf, "%llu-%d", milliseconds_since_epoch, r); + sprintf(buf, "%d-%llu", r, milliseconds_since_epoch); std::string new_note_file = buf; std::string notes_dir = notesDir();