summaryrefslogtreecommitdiff
path: root/arch/riscv/src
diff options
context:
space:
mode:
Diffstat (limited to 'arch/riscv/src')
-rw-r--r--arch/riscv/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv/src/lib.rs b/arch/riscv/src/lib.rs
index 8b9fde31..6b3451a9 100644
--- a/arch/riscv/src/lib.rs
+++ b/arch/riscv/src/lib.rs
@@ -1031,12 +1031,12 @@ impl<D: 'static + RiscVDisassembler + Send + Sync> architecture::Architecture fo
Integer(i as u64),
));
- res.push(InstructionTextToken::new(BnString::new("("), Text));
+ res.push(InstructionTextToken::new(BnString::new("("), Brace));
res.push(InstructionTextToken::new(
BnString::new(&reg.name()),
Register,
));
- res.push(InstructionTextToken::new(BnString::new(")"), Text));
+ res.push(InstructionTextToken::new(BnString::new(")"), Brace));
res.push(InstructionTextToken::new(
BnString::new(""),
EndMemoryOperand,