summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-20 21:38:48 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-20 21:38:48 +0200
commit7cd883684285b42cb52ecd4fb6460f6eb77f0ef2 (patch)
tree90c9b154be9e72ece97ceea197f83302a8748181 /src
parentf29d675303203309dcb4b772f8cc81068c0f97c0 (diff)
Bookmarks: Timestamp accuracy
There is no need for microsecond accuracy in the creation timestamp.
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks.c2
1 files changed, 1 insertions, 1 deletions
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) {
184 continue; 184 continue;
185 } 185 }
186 format_String(str, 186 format_String(str,
187 "%08x %lf %s\n%s\n%s\n", 187 "%08x %.0lf %s\n%s\n%s\n",
188 bm->icon, 188 bm->icon,
189 seconds_Time(&bm->when), 189 seconds_Time(&bm->when),
190 cstr_String(&bm->url), 190 cstr_String(&bm->url),