--- linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp 2020/01/08 20:39:59 3706 +++ linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp 2020/01/08 21:21:58 3707 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2019 Christian Schoenebeck + * Copyright (c) 2014-2020 Christian Schoenebeck * * http://www.linuxsampler.org * @@ -201,7 +201,7 @@ VMIntExpr* intExpr = dynamic_cast(args->arg(0)); if (intExpr) { - printf("[ScriptVM %.3f] %lld\n", usecs/1000000.f, (int64_t)intExpr->evalInt()); + printf("[ScriptVM %.3f] %" PRId64 "\n", usecs/1000000.f, (int64_t)intExpr->evalInt()); return successResult(); }