Fix incorrect arguments to error printf

This commit is contained in:
baldurk
2017-11-09 15:11:20 +00:00
parent 92ec567e9e
commit 13f4ac481e
+1 -1
View File
@@ -329,7 +329,7 @@ void RDCFile::Init(StreamReader &reader)
RDCERR(
"Capture file from wrong version. This program (v%s) is logfile version %llu, file is "
"logfile version %llu capture on %s.",
SERIALISE_VERSION, header.version, MAJOR_MINOR_VERSION_STRING, header.progVersion);
MAJOR_MINOR_VERSION_STRING, SERIALISE_VERSION, header.version, header.progVersion);
m_Error = ContainerError::UnsupportedVersion;
return;