From e11677bb651dd96bf0bf5e193619aa1688af9252 Mon Sep 17 00:00:00 2001 From: Sangchul Lee Date: Wed, 22 Apr 2020 10:39:31 +0900 Subject: [PATCH] Fix typo - change 'transotions' to 'transitions' [Version] 0.1.30 [Issue Type] Typo Change-Id: I8e1f1ab3aea3b89ddb1c7cffbb53ebf4b5ca2437 Signed-off-by: Sangchul Lee --- packaging/capi-media-streamer.spec | 2 +- src/media_streamer_priv.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/capi-media-streamer.spec b/packaging/capi-media-streamer.spec index dd27a67..78d8c28 100644 --- a/packaging/capi-media-streamer.spec +++ b/packaging/capi-media-streamer.spec @@ -1,6 +1,6 @@ Name: capi-media-streamer Summary: A Media Streamer API -Version: 0.1.29 +Version: 0.1.30 Release: 0 Group: Multimedia/API License: Apache-2.0 diff --git a/src/media_streamer_priv.c b/src/media_streamer_priv.c index d1fb279..9d42f0b 100644 --- a/src/media_streamer_priv.c +++ b/src/media_streamer_priv.c @@ -321,7 +321,7 @@ static int __ms_change_resources_state(media_streamer_s *ms_streamer, media_stre ms_retvm_if(ms_streamer == NULL, MEDIA_STREAMER_ERROR_INVALID_PARAMETER, "ms_streamer is NULL"); /* According to state graph we need to handle only this two states - * and different transotions into them */ + * and different transitions into them */ if (state == MEDIA_STREAMER_STATE_IDLE) { switch (ms_streamer->pend_state) { case MEDIA_STREAMER_STATE_READY: @@ -461,7 +461,7 @@ static int __ms_change_policy_state(media_streamer_s *ms_streamer, media_streame ms_retvm_if(ms_streamer == NULL, MEDIA_STREAMER_ERROR_INVALID_PARAMETER, "ms_streamer is NULL"); /* According to state graph we need to handle only this state - * and different transotions into them */ + * and different transitions into them */ if (state == MEDIA_STREAMER_STATE_READY) { switch (ms_streamer->pend_state) { case MEDIA_STREAMER_STATE_IDLE: -- 2.7.4