From 13a6797bbae457c18c27a7c2c874e4dd52258cc7 Mon Sep 17 00:00:00 2001 From: OscarL Date: Mon, 28 Oct 2024 08:23:24 -0300 Subject: [PATCH] CMimeBox.cpp: fix a format warning. (#103) --- Sources/CMimeBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/CMimeBox.cpp b/Sources/CMimeBox.cpp index 094eba3..791be8b 100644 --- a/Sources/CMimeBox.cpp +++ b/Sources/CMimeBox.cpp @@ -76,7 +76,7 @@ CMimeItem::CMimeItem(const char *mime) time_t t; time(&t); char p[PATH_MAX]; - sprintf(p, "tmp.pe_is_looking_for_a_mime_icon:%" B_PRId32, t); + sprintf(p, "tmp.pe_is_looking_for_a_mime_icon:%" B_PRIdTIME, t); BFile f; FailOSErr(tmpdir.CreateFile(p, &f));