libobs: Add missing static to function

This function is not used outside of the source file, so make it static.
This commit is contained in:
jp9000 2019-08-25 19:16:20 -07:00
parent 2c3ea4af55
commit 2557ffce7e

View File

@ -144,7 +144,7 @@ static inline bool is_composite_source(const struct obs_source *source)
extern char *find_libobs_data_file(const char *file);
/* internal initialization */
bool obs_source_init(struct obs_source *source)
static bool obs_source_init(struct obs_source *source)
{
pthread_mutexattr_t attr;