From 0b23bc6179b7a8e6c8664374d7d6f66fe9c9bdcb Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Fri, 20 Jan 2023 12:25:38 +0000 Subject: add PPCError error code enum --- compiler_and_linker/unsorted/CExpr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler_and_linker/unsorted/CExpr.c') diff --git a/compiler_and_linker/unsorted/CExpr.c b/compiler_and_linker/unsorted/CExpr.c index 23fe22f..484f56d 100644 --- a/compiler_and_linker/unsorted/CExpr.c +++ b/compiler_and_linker/unsorted/CExpr.c @@ -1392,7 +1392,7 @@ static ENode *CExpr_ParseVecStep(void) { } expr = intconstnode(TYPE(&stsignedint), value); } else { - PPCError_Error(104, "vec_step", "vec_step", type, 0); + PPCError_Error(PPCErrorStr104, "vec_step", "vec_step", type, 0); } } else { CError_Error(CErrorStr114); -- cgit v1.2.3