From d1b6706269500085f4f4811e4aa298911b1ced8c Mon Sep 17 00:00:00 2001 From: hwspeedy Date: Tue, 5 Mar 2024 14:42:01 +0100 Subject: FIX Risc-V cpu model was translated --- modules/devices/riscv/processor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/devices/riscv/processor.c b/modules/devices/riscv/processor.c index d44ca542..cd8da4c7 100644 --- a/modules/devices/riscv/processor.c +++ b/modules/devices/riscv/processor.c @@ -104,7 +104,7 @@ processor_scan(void) processor = (Processor *) pi->data; /* strings can't be null or segfault later */ - STRIFNULL(processor->model_name, _("RISC-V Processor") ); + STRIFNULL(processor->model_name, "RISC-V Processor" ); UNKIFNULL(processor->mmu); UNKIFNULL(processor->isa); UNKIFNULL(processor->uarch); -- cgit v1.2.3