Skip to content

Commit

Permalink
CMimeBox.cpp: fix a format warning. (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarL authored Oct 28, 2024
1 parent d624970 commit 13a6797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/CMimeBox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 13a6797

Please sign in to comment.