Skip to content

Commit

Permalink
Fix build warning which prevents compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
dougg3 committed Oct 16, 2022
1 parent 6c3104d commit 128c62b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/obs-ios-camera-source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void IOSCameraInput::deviceManagerDidUpdateDeviceList(
void IOSCameraInput::deviceManagerDidChangeState(
portal::DeviceManager::State state)
{
blog(LOG_INFO, "deviceManagerDidChangeState %i", state);
blog(LOG_INFO, "deviceManagerDidChangeState %i", static_cast<int>(state));
std::cout << "DeviceManager::didChangeState: " << state << std::endl;
}

Expand Down

0 comments on commit 128c62b

Please sign in to comment.