# HG changeset patch # User Mike Becker # Date 1747660211 -7200 # Node ID 1ebab6df60c278db7c224b8a1368114598716a9e # Parent e4f1aea7df994065b670ceb7b68880730e4de3df fix mix of positional and non-positional printf specifiers diff -r e4f1aea7df99 -r 1ebab6df60c2 src/html.cpp --- a/src/html.cpp Mon May 19 15:09:54 2025 +0200 +++ b/src/html.cpp Mon May 19 15:10:11 2025 +0200 @@ -148,7 +148,7 @@ void html::heading_repo(const std::string& repo) { indent(); - printf("

%1$s

\n", encode(repo).c_str()); + printf("

%1$s

\n", encode(repo).c_str()); } void html::heading_author(const std::string& author, unsigned int total_commits) {