From 985a6c203f6d36626b5285e15cc5bb2021e32f95 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sat, 13 Aug 2016 12:38:40 -0700 Subject: [PATCH] fix typo --- examples/Utils/b3Clock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Utils/b3Clock.cpp b/examples/Utils/b3Clock.cpp index d2d5d0930..7482c302d 100644 --- a/examples/Utils/b3Clock.cpp +++ b/examples/Utils/b3Clock.cpp @@ -239,7 +239,7 @@ void b3Clock::usleep(int microSeconds) Sleep(millis); #else - usleep(microSeconds); / + usleep(microSeconds); //struct timeval tv; //tv.tv_sec = microSeconds/1000000L; //tv.tv_usec = microSeconds%1000000L;