core/iwasm/common/wasm_application.c: Fix a typo of macro (#1180)

Change WAMR_ENABLE_PERF_PROFILING to WASM_ENABLE_PERF_PROFILING
This commit is contained in:
YAMAMOTO Takashi 2022-05-21 13:53:11 +09:00 committed by GitHub
parent 37cc6eac3b
commit a50011a4dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -755,7 +755,7 @@ wasm_application_execute_func(WASMModuleInstanceCommon *module_inst,
}
#endif
#if WAMR_ENABLE_PERF_PROFILING != 0
#if WASM_ENABLE_PERF_PROFILING != 0
wasm_runtime_dump_perf_profiling(module_inst);
#endif