From 34cf1b0940feecce8850917ee08713b4a46b6338 Mon Sep 17 00:00:00 2001 From: Ricky Zhang Date: Mon, 4 Sep 2017 14:35:50 -0400 Subject: [PATCH] Fix indentation and a typo. Signed-off-by: Ricky Zhang --- cxmon/src/mon_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cxmon/src/mon_cmd.cpp b/cxmon/src/mon_cmd.cpp index 59391bb3..0731c9de 100644 --- a/cxmon/src/mon_cmd.cpp +++ b/cxmon/src/mon_cmd.cpp @@ -496,7 +496,7 @@ void break_point_save(void) fprintf(file, STR_DISABLED_BREAK_POINTS); for (it = disabled_break_points.begin(); it != disabled_break_points.end(); it++) - fprintf(file, "%x\n", *it); + fprintf(file, "%x\n", *it); fclose(file); } @@ -528,7 +528,7 @@ void break_point_load(void) } char line_buff[1024]; - bool is_disabled_break_points = false;; + bool is_disabled_break_points = false; if (fgets(line_buff, sizeof(line_buff), file) == NULL || strcmp(line_buff, STR_ACTIVE_BREAK_POINTS) != 0) {