diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 5c07f194cba7378176b9c06d729c90521db45577
parent c35628568177094d2c6751fe26602a2e767b0cfe
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Mon, 15 Apr 2024 16:03:25 +0200

fix: use addstr without fmt

Diffstat:
Msrc/caldav.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/caldav.c b/src/caldav.c @@ -619,7 +619,7 @@ int caldav_sync(struct tm* date, wresize(header, LINES, getmaxx(header)); info_txt = "Missing sync parameters. Set Google Client ID, secret and remote calendar name.\n" "Press any key to continue."; - mvwprintw(header, 0, 0, info_txt); + mvwaddstr(header, 0, 0, info_txt); wrefresh(header); // accept any input to proceed