Browse Source

libobs: Fix unused parameter

jpark37 4 years ago
parent
commit
98d1f340da
1 changed files with 2 additions and 0 deletions
  1. 2 0
      libobs/util/platform-nix.c

+ 2 - 0
libobs/util/platform-nix.c

@@ -96,6 +96,8 @@ void os_dlclose(void *module)
 
 bool os_is_obs_plugin(const char *path)
 {
+	UNUSED_PARAMETER(path);
+
 	/* not necessary on this platform */
 	return true;
 }