Browse Source

obs-webrtc: Fix legacy CMake obs_status call

An additional stray comma resulted in an incorrectly formatted status
message in the CMake log.
Ryan Foster 2 years ago
parent
commit
7cf7fd0117
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/obs-webrtc/cmake/legacy.cmake

+ 1 - 1
plugins/obs-webrtc/cmake/legacy.cmake

@@ -2,7 +2,7 @@ project(obs-webrtc)
 
 option(ENABLE_WEBRTC "Enable WebRTC Output support" ON)
 if(NOT ENABLE_WEBRTC)
-  obs_status(DISABLED, "obs-webrtc")
+  obs_status(DISABLED "obs-webrtc")
   return()
 endif()