Add a cast to fix:

tempfile.c(202) : warning C4267: '=' : conversion from 'size_t' to 'unsigned long'

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34911 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
etxrab 2010-11-16 20:08:31 +00:00
parent a7f70b7d8b
commit 4717e3a526
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ create_tempfile(char **namebuf, const char *pfx)
sep[0] = G_DIR_SEPARATOR;
tmp_file = g_strconcat(tmp_dir, sep, pfx, "_", timestr, "_", TMP_FILE_SUFFIX, NULL);
if (strlen(tmp_file) > tf[idx].len) {
tf[idx].len = strlen(tmp_file) + 1;
tf[idx].len = (int)strlen(tmp_file) + 1;
tf[idx].path = (char *)g_realloc(tf[idx].path, tf[idx].len);
}
g_strlcpy(tf[idx].path, tmp_file, tf[idx].len);