compilation fix for OSX

This commit is contained in:
Bruno Herbelin
2023-12-23 14:24:32 +01:00
parent 5465a45dc6
commit b0efd80e42
3 changed files with 7 additions and 8 deletions

View File

@@ -842,7 +842,7 @@ bool Control::receiveSourceAttribute(Source *target, const std::string &attribut
read_time = true;
}
if (read_time) {
int hh, mm, ss, ms;
osc::int32 hh, mm, ss, ms;
args >> hh >> mm >> ss >> ms >> osc::EndMessage;
target->call( new Seek( hh, mm, ss, ms ), true );
}