debug-engine: constify several global variables (#1427)

This commit is contained in:
YAMAMOTO Takashi
2022-08-30 16:43:47 +09:00
committed by GitHub
parent 29dee732e9
commit fba12e9969
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#include "wasm_opcode.h"
#include "wasm_runtime.h"
static uint8 break_instr[] = { DEBUG_OP_BREAK };
static const uint8 break_instr[] = { DEBUG_OP_BREAK };
typedef struct WASMDebugEngine {
struct WASMDebugEngine *next;