From f9f303923e2ce16f9695efc8a4abf770d0122476 Mon Sep 17 00:00:00 2001 From: Liviu Ionescu Date: Tue, 3 Oct 2017 00:36:22 +0300 Subject: [PATCH] target/riscv/asm.h: use tab for indentation --- src/target/riscv/asm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/target/riscv/asm.h b/src/target/riscv/asm.h index 8a2fd491c..f976e2065 100644 --- a/src/target/riscv/asm.h +++ b/src/target/riscv/asm.h @@ -17,7 +17,7 @@ static uint32_t load(const struct target *target, unsigned int rd, return ld(rd, base, offset); } assert(0); - return 0; // Silence -Werror=return-type + return 0; // Silence -Werror=return-type } static uint32_t store(const struct target *target, unsigned int src, @@ -32,7 +32,7 @@ static uint32_t store(const struct target *target, unsigned int src, return sd(src, base, offset); } assert(0); - return 0; // Silence -Werror=return-type + return 0; // Silence -Werror=return-type } #endif