You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2018/11/07 21:15:15 UTC

[mynewt-core] 05/05: hw/battery: Minor whitespace fix

This is an automated email from the ASF dual-hosted git repository.

ccollins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit 89c5d96c57060c1bc83298bc48d2c13df62fb680
Author: Christopher Collins <cc...@apache.org>
AuthorDate: Thu Nov 1 14:55:13 2018 -0700

    hw/battery: Minor whitespace fix
---
 hw/battery/src/battery_shell.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/hw/battery/src/battery_shell.c b/hw/battery/src/battery_shell.c
index c1979d1..6fb411a 100644
--- a/hw/battery/src/battery_shell.c
+++ b/hw/battery/src/battery_shell.c
@@ -475,12 +475,12 @@ err:
 
 static const struct shell_cmd bat_cli_commands[] =
 {
-        { "read", cmd_bat_read, HELP(bat_read_help) },
-        { "write", cmd_bat_write, HELP(bat_write_help) },
-        { "list", cmd_bat_list, HELP(bat_list_help) },
-        { "pollrate", cmd_bat_poll_rate, HELP(bat_poll_rate_help) },
-        { "monitor", cmd_bat_monitor, HELP(bat_monitor_help) },
-        { NULL, NULL, NULL }
+    { "read", cmd_bat_read, HELP(bat_read_help) },
+    { "write", cmd_bat_write, HELP(bat_write_help) },
+    { "list", cmd_bat_list, HELP(bat_list_help) },
+    { "pollrate", cmd_bat_poll_rate, HELP(bat_poll_rate_help) },
+    { "monitor", cmd_bat_monitor, HELP(bat_monitor_help) },
+    { NULL, NULL, NULL }
 };
 
 /**