cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 3c63a64288f665a272974698d547bbca79769d5a
parent 86b299819c86758f2b537c1de0475a2906f0a4d2
Author: René Wagner <rwa@clttr.info>
Date:   Fri,  2 Jul 2021 15:09:40 +0200

fix typo in error message when removing a bookmark

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

diff --git a/src/gmnlm.c b/src/gmnlm.c @@ -246,7 +246,7 @@ remove_bookmark(struct browser *browser) fclose(fo); free(line); if ( rename(tempfile, path) != 0) { - fprintf(browser->tty, "Failed to udpate bookmarks: %s\n", strerror(errno)); + fprintf(browser->tty, "Failed to update bookmarks: %s\n", strerror(errno)); } }