Skip to content

Commit

Permalink
fixup lunix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Try committed Jun 25, 2023
1 parent ba27c66 commit 3feccbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game/utils/string_frm.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class alignas(64) string_frm {

void implWrite(char* out, size_t maxSz, size_t& at, size_t arg) {
char buf[20] = {};
std::snprintf(buf,sizeof(buf),"%llu",uint64_t(arg));
std::snprintf(buf,sizeof(buf),"%lu",uint64_t(arg));
implWrite(out, maxSz, at, buf);
}

Expand Down

0 comments on commit 3feccbc

Please sign in to comment.