Fix typo 79/300679/1
authorChanggyu Choi <changyu.choi@samsung.com>
Tue, 31 Oct 2023 07:42:20 +0000 (16:42 +0900)
committerChanggyu Choi <changyu.choi@samsung.com>
Tue, 31 Oct 2023 07:42:20 +0000 (16:42 +0900)
Change-Id: I4c17ea4c8253e46b26237c63326bf8ded5f136f6
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
src/launchpad-process-pool/app_executor.cc

index d2e17f8..06dda58 100644 (file)
@@ -148,7 +148,7 @@ void AppExecutor::OnExecution() {
   Util::CloseAllFds();
   if (execv(app_argv[LoaderArg::Path], app_argv) < 0) {
     char err_buf[1024];
-    fprintf(stderr, "Failed to exeucte a file. path: %s, errno: %d(%s)\n",
+    fprintf(stderr, "Failed to execute a file. path: %s, errno: %d(%s)\n",
         app_info_->GetAppPath().c_str(), errno,
         strerror_r(errno, err_buf, sizeof(err_buf)));
     ExecuteEcho(app_info_->GetAppPath(), err_buf);