From 7cd883684285b42cb52ecd4fb6460f6eb77f0ef2 Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sat, 20 Mar 2021 21:38:48 +0200 Subject: Bookmarks: Timestamp accuracy There is no need for microsecond accuracy in the creation timestamp. --- src/bookmarks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bookmarks.c b/src/bookmarks.c index 026b80d6..5fff9c75 100644 --- a/src/bookmarks.c +++ b/src/bookmarks.c @@ -184,7 +184,7 @@ void save_Bookmarks(const iBookmarks *d, const char *dirPath) { continue; } format_String(str, - "%08x %lf %s\n%s\n%s\n", + "%08x %.0lf %s\n%s\n%s\n", bm->icon, seconds_Time(&bm->when), cstr_String(&bm->url), -- cgit v1.2.3