Change log of import function to be consistent (#3656)

This commit is contained in:
Benbuck Nason 2024-07-22 18:14:49 -07:00 committed by GitHub
parent 058bc47102
commit b086d5820a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -230,7 +230,7 @@ wasm_native_resolve_symbol(const char *module_name, const char *field_name,
#if WASM_ENABLE_WAMR_COMPILER == 0 #if WASM_ENABLE_WAMR_COMPILER == 0
/* Output warning except running aot compiler */ /* Output warning except running aot compiler */
LOG_WARNING("failed to check signature '%s' and resolve " LOG_WARNING("failed to check signature '%s' and resolve "
"pointer params for import function (%s %s)\n", "pointer params for import function (%s, %s)\n",
signature, module_name, field_name); signature, module_name, field_name);
#endif #endif
return NULL; return NULL;