aboutsummaryrefslogtreecommitdiff
path: root/src/helper/log.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2021-07-03 18:18:57 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2021-07-20 14:55:43 +0100
commit20b29b7767097f999fe2eb4f7fb6c2917e9f66a6 (patch)
treef6f060f100e0aae122b6e0fdbae2f342036bd7f7 /src/helper/log.c
parent28c24a5c41c47a66e9310912f88148814f730a25 (diff)
downloadriscv-openocd-20b29b7767097f999fe2eb4f7fb6c2917e9f66a6.zip
riscv-openocd-20b29b7767097f999fe2eb4f7fb6c2917e9f66a6.tar.gz
riscv-openocd-20b29b7767097f999fe2eb4f7fb6c2917e9f66a6.tar.bz2
openocd: manually fix Yoda conditions
Fix the remaining Yoda conditions, detected by checkpatch but not fixed automatically. While there, apply minor style changes. Change-Id: I6e1978b89c4d56a20aceaeb2b52968eb6384432a Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6356 Tested-by: jenkins Reviewed-by: Oleksij Rempel <linux@rempel-privat.de> Reviewed-by: Xiang W <wxjstz@126.com>
Diffstat (limited to 'src/helper/log.c')
-rw-r--r--src/helper/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/log.c b/src/helper/log.c
index 785a8bd..b39cb91 100644
--- a/src/helper/log.c
+++ b/src/helper/log.c
@@ -290,7 +290,7 @@ void log_init(void)
if (NULL != debug_env) {
int value;
int retval = parse_int(debug_env, &value);
- if (ERROR_OK == retval &&
+ if (retval == ERROR_OK &&
debug_level >= LOG_LVL_SILENT &&
debug_level <= LOG_LVL_DEBUG_IO)
debug_level = value;