From 96f860a6274ded7a0e7f2a456a944fe8dff72bfb Mon Sep 17 00:00:00 2001 From: Seunghun Lee Date: Thu, 9 Jan 2020 08:50:39 +0900 Subject: [PATCH] e_presentation_time: fix unreachable code Change-Id: Ice76791d39b42c03ae805643ecb354d9dfac0c0f --- src/bin/e_presentation_time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_presentation_time.c b/src/bin/e_presentation_time.c index e2a8b3b8a0..7da3b58869 100644 --- a/src/bin/e_presentation_time.c +++ b/src/bin/e_presentation_time.c @@ -36,7 +36,7 @@ _get_clock_id_string(clockid_t clock_id) case CLOCK_MONOTONIC: return "CLOCK_MONOTONIC"; case CLOCK_PROCESS_CPUTIME_ID: return "CLOCK_PROCESS_CPUTIME_ID"; case CLOCK_THREAD_CPUTIME_ID: return "CLOCK_THREAD_CPUTIME_ID"; - default: return "Unkown"; + default: break; } return "Unknown"; -- 2.34.1