Fixed warning in MSVC: 'different types for formal and actual parameter'.
[mono.git] / mono / metadata / object.c
index a9a86706f234a79c35762e85c190bd477cc81fc4..7434a69448beab806976b14cc789f8a6c3406e5a 100644 (file)
@@ -3342,7 +3342,7 @@ mono_field_static_get_value_for_thread (MonoInternalThread *thread, MonoVTable *
 void
 mono_field_static_get_value (MonoVTable *vt, MonoClassField *field, void *value)
 {
-       return mono_field_static_get_value_for_thread (mono_thread_internal_current (), vt, field, value);
+       mono_field_static_get_value_for_thread (mono_thread_internal_current (), vt, field, value);
 }
 
 /**