0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

libobs: Fix warning

Should have used size_t here instead of int.
This commit is contained in:
jp9000 2015-08-28 15:00:22 -07:00
parent ff6cf508e5
commit 3620dbb59f

View File

@ -58,7 +58,7 @@ static int load_module_exports(struct obs_module *mod, const char *path)
static inline char *get_module_name(const char *file)
{
static int ext_len = 0;
static size_t ext_len = 0;
struct dstr name = {0};
if (ext_len == 0) {