You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/04/28 02:14:16 UTC

[17/50] [abbrv] incubator-mynewt-core git commit: Fix gratuitous newline deletion.

Fix gratuitous newline deletion.


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/dc159489
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/dc159489
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/dc159489

Branch: refs/heads/master
Commit: dc1594897cbc22e4620e103e5b5d4ef03cbea5ed
Parents: 3eb0cfb
Author: Neel Natu <ne...@nahannisys.com>
Authored: Tue Apr 19 18:29:48 2016 -0700
Committer: Neel Natu <ne...@nahannisys.com>
Committed: Tue Apr 19 18:29:48 2016 -0700

----------------------------------------------------------------------
 libs/os/src/arch/sim/os_arch_sim.c | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/dc159489/libs/os/src/arch/sim/os_arch_sim.c
----------------------------------------------------------------------
diff --git a/libs/os/src/arch/sim/os_arch_sim.c b/libs/os/src/arch/sim/os_arch_sim.c
index 50b6663..14316c5 100644
--- a/libs/os/src/arch/sim/os_arch_sim.c
+++ b/libs/os/src/arch/sim/os_arch_sim.c
@@ -363,6 +363,7 @@ timer_handler(int sig)
         time_diff.tv_sec = 0;
         time_diff.tv_usec %= OS_USEC_PER_TICK;
         timersub(&time_now, &time_diff, &time_last);
+
         os_time_advance(ticks);
     }
 }