MXS-2900 Add parameter checking to tprintf-function

This commit is contained in:
Esa Korhonen
2020-08-13 22:38:21 +03:00
parent 5abdb91e9d
commit b31cb20bae
10 changed files with 10 additions and 10 deletions

View File

@ -120,7 +120,7 @@ int main(int argc, char** argv)
auto end = std::chrono::steady_clock::now();
test.tprintf("A total of %d connections were created over %d seconds",
test.tprintf("A total of %d connections were created over %ld seconds",
conns.load(),
std::chrono::duration_cast<std::chrono::seconds>(end - start).count());