Clean-up: Fix build warning with MSVC

Callback function was using int while update_render_passes_cb_t was
using eNodeSocketDatatype leading to a build warning about different
argument types with MSVC.
This commit is contained in:
Ray molenkamp 2020-12-16 21:03:42 -07:00
parent 8df6589585
commit 7e535499d5
1 changed files with 1 additions and 1 deletions

View File

@ -2054,7 +2054,7 @@ static void bke_view_layer_verify_aov_cb(void *userdata,
const char *name,
int UNUSED(channels),
const char *UNUSED(chanid),
int UNUSED(type))
eNodeSocketDatatype UNUSED(type))
{
GHash *name_count = userdata;
void **value_p;