From a9cbde61882020ebb50e4b3f49bc9ea7c7eb17da Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 13 Apr 2021 16:24:01 +0900 Subject: [PATCH] Fix typo Change-Id: Ib611c2f20ffe5efc745c723989fe709ad7b4516b Signed-off-by: Jihoon Kim --- scl/scldebug.cpp | 8 ++++---- scl/scldebug.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scl/scldebug.cpp b/scl/scldebug.cpp index 16b0edb..3f947f6 100644 --- a/scl/scldebug.cpp +++ b/scl/scldebug.cpp @@ -22,11 +22,11 @@ #ifdef SCL_DEBUG_ON -/* Measure elapased time */ +/* Measure elapsed time */ static float _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct timeval t1); -/* Measure elapased time */ +/* Measure elapsed time */ float SCL_DEBUG_TIME(const char* fileStr, int line, const char* str) { float etime = 0.0; @@ -53,7 +53,7 @@ float SCL_DEBUG_TIME(const char* fileStr, int line, const char* str) return etime; } -/* Measure elapased time */ +/* Measure elapsed time */ static float _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct timeval t1) { float etime; @@ -62,7 +62,7 @@ static float _SCL_DEBUG_ELAPSED_TIME(const char* str, struct timeval t0, struct return etime; } -/* Measure elapased time */ +/* Measure elapsed time */ float SCL_DEBUG_ELAPSED_TIME(const char* fileStr, int line, const char* str, int type) { static struct timeval s_tv1; diff --git a/scl/scldebug.h b/scl/scldebug.h index b8b527f..e32e2f0 100644 --- a/scl/scldebug.h +++ b/scl/scldebug.h @@ -64,11 +64,11 @@ extern "C" #define scl_assert_return_null scl_assert_return_false - /* Measure elapased time */ + /* Measure elapsed time */ float SCL_DEBUG_TIME(const char* fileStr, int line, const char* str); - /* Measure elapased time */ + /* Measure elapsed time */ float SCL_DEBUG_ELAPSED_TIME(const char* fileStr, int line, const char* str, int type); -- 2.7.4