Browse Source

libobs: Adjust grammar of an error message

Change 'but both were not found' to 'but neither were found.'

Closes jp9000/obs-studio#1018
Jimi Huotari 8 years ago
parent
commit
73c4ebc289
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libobs/CMakeLists.txt

+ 1 - 1
libobs/CMakeLists.txt

@@ -31,7 +31,7 @@ endif()
 find_package(ImageMagick QUIET COMPONENTS MagickCore)
 
 if(NOT ImageMagick_MagickCore_FOUND AND NOT FFMPEG_AVCODEC_FOUND)
-	message(FATAL_ERROR "Either MagickCore or Libavcodec is required, but both were not found")
+	message(FATAL_ERROR "Either MagickCore or Libavcodec is required, but neither were found.")
 elseif(NOT ImageMagick_MagickCore_FOUND AND LIBOBS_PREFER_IMAGEMAGICK)
 	message(FATAL_ERROR "ImageMagick support was requested, but was not found.")
 endif()