提交 ac23ec83 编写于 作者: J jp9000

libobs/util: Fix warning (data type size mismatch)

Fixes warning on Visual Studio 2013:
'initializing' : conversion from 'size_t' to 'int', possible loss of
data
上级 2274b579
......@@ -90,7 +90,7 @@ int os_stat(const char *file, struct stat *st)
{
if (file) {
wchar_t w_file[512];
int size = os_utf8_to_wcs(file, 0, w_file, sizeof(w_file));
size_t size = os_utf8_to_wcs(file, 0, w_file, sizeof(w_file));
if (size > 0) {
struct _stat st_w32;
int ret = _wstat(w_file, &st_w32);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册