Browse Source

Merge pull request #35959 from Anutrix/removeTheLastERR_PRINTS

Remove the last ERR_PRINTS that was missed by #33391
Rémi Verschelde 5 years ago
parent
commit
195655a995
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/mono/mono_gd/gd_mono_android.cpp

+ 1 - 1
modules/mono/mono_gd/gd_mono_android.cpp

@@ -315,7 +315,7 @@ MonoArray *_gd_mono_android_cert_store_lookup(MonoString *p_alias) {
 	char *alias_utf8 = mono_string_to_utf8_checked(p_alias, &mono_error);
 	char *alias_utf8 = mono_string_to_utf8_checked(p_alias, &mono_error);
 
 
 	if (!mono_error_ok(&mono_error)) {
 	if (!mono_error_ok(&mono_error)) {
-		ERR_PRINTS(String() + "Failed to convert MonoString* to UTF-8: '" + mono_error_get_message(&mono_error) + "'.");
+		ERR_PRINT(String() + "Failed to convert MonoString* to UTF-8: '" + mono_error_get_message(&mono_error) + "'.");
 		mono_error_cleanup(&mono_error);
 		mono_error_cleanup(&mono_error);
 		return NULL;
 		return NULL;
 	}
 	}