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 2016/10/07 01:13:50 UTC

incubator-mynewt-core git commit: newtmgr - Fix indentation.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop cc0344690 -> 2d381b3d8


newtmgr - Fix indentation.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/2d381b3d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/2d381b3d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/2d381b3d

Branch: refs/heads/develop
Commit: 2d381b3d860ce6ac6d1627eb9d4f4944d17fc0c3
Parents: cc03446
Author: Christopher Collins <cc...@apache.org>
Authored: Thu Oct 6 18:13:36 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Thu Oct 6 18:13:36 2016 -0700

----------------------------------------------------------------------
 mgmt/newtmgr/src/newtmgr.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/2d381b3d/mgmt/newtmgr/src/newtmgr.c
----------------------------------------------------------------------
diff --git a/mgmt/newtmgr/src/newtmgr.c b/mgmt/newtmgr/src/newtmgr.c
index bb91c85..15ba79a 100644
--- a/mgmt/newtmgr/src/newtmgr.c
+++ b/mgmt/newtmgr/src/newtmgr.c
@@ -438,10 +438,10 @@ nmgr_task(void *arg)
                 nt = (struct nmgr_transport *) ev->ev_arg;
                 nmgr_process(nt);
                 break;
-	    case OS_EVENT_T_TIMER:
-		ocf = (struct os_callout_func *)ev;
-		ocf->cf_func(CF_ARG(ocf));
-		break;
+            case OS_EVENT_T_TIMER:
+                ocf = (struct os_callout_func *)ev;
+                ocf->cf_func(CF_ARG(ocf));
+                break;
         }
     }
 }