소스 검색

libobs: Fix warning

Should have used size_t here instead of int.
jp9000 10 년 전
부모
커밋
3620dbb59f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libobs/obs-module.c

+ 1 - 1
libobs/obs-module.c

@@ -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) {