fix bug in use of PRId64

This commit is contained in:
2022-03-22 12:24:02 -04:00
parent 726b8bceb0
commit a7cdedf82b

View File

@@ -191,7 +191,7 @@ bool PrintChanneler::channel(const PrintBuffer *printbuffer, std::ostream &ostre
Invocation PrintChanneler::invocation(int64_t actor_id) {
char buf[80];
sprintf(buf, PRId64, line_);
sprintf(buf, "%" PRId64, line_);
return Invocation(Invocation::KIND_FLUSH_PRINTS, actor_id, actor_id, buf, InvocationData());
}