summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2018-09-04 14:16:43 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2018-09-04 14:16:43 +0900
commit3b46847fbc7a3cf9f6e37c677878bed303b3609c (patch)
tree1a3ed1a7fd37271ca2e5b562617b6c866d4f15d5
parentc23c6dfd3bff29aa28cbd6fb27e11a8f0ab282ff (diff)
downloadaul-1-3b46847fbc7a3cf9f6e37c677878bed303b3609c.tar.gz
aul-1-3b46847fbc7a3cf9f6e37c677878bed303b3609c.tar.bz2
aul-1-3b46847fbc7a3cf9f6e37c677878bed303b3609c.zip
Fix typo
Change-Id: I40187ebc95b256377ccfe777effe9f6b30f14f5c Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--tool/app_launcher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/app_launcher.c b/tool/app_launcher.c
index 9970d2c2..ed92691a 100644
--- a/tool/app_launcher.c
+++ b/tool/app_launcher.c
@@ -240,7 +240,7 @@ static int __is_app_installed(const char *appid, uid_t uid)
static int __cmd_common_init(struct launch_arg *arg)
{
if (!__is_app_installed(arg->appid, arg->uid)) {
- printf("The app with ID: %s is not avaible for the user %d\n",
+ printf("The app with ID: %s is not available for the user %d\n",
arg->appid, arg->uid);
return -1;
}
@@ -354,7 +354,7 @@ static int __cmd_start_run(struct launch_arg *arg)
if (arg->pid <= 0) {
if (arg->pid == AUL_R_ENOAPP) {
- printf("The app with ID: %s is not avaible for the user %d\n",
+ printf("The app with ID: %s is not available for the user %d\n",
arg->appid, arg->uid);
} else {
printf("... launch failed\n");