X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=NativeLauncher%2Finstaller-plugin%2Fni_common.cc;h=cd2c47301e3288c5f3da73b152e2b4c6dff4a1b1;hb=b3859a01995bda9a1c1395be58b79caf8efc1e18;hp=4b5fe3d50254a510f72585d50314bc81f7e9aa3b;hpb=7c62440d66c5a6ca97ba054682bd3fe4e03196e5;p=platform%2Fcore%2Fdotnet%2Flauncher.git diff --git a/NativeLauncher/installer-plugin/ni_common.cc b/NativeLauncher/installer-plugin/ni_common.cc index 4b5fe3d..cd2c473 100644 --- a/NativeLauncher/installer-plugin/ni_common.cc +++ b/NativeLauncher/installer-plugin/ni_common.cc @@ -138,24 +138,24 @@ static int crossgen(const std::string& dllPath, const std::string& appPath, bool if (!isManagedAssembly(dllPath)) { fprintf(stderr, "Input file is not a dll file : %s\n", dllPath.c_str()); - return-1; + return -1; } if (niExist(dllPath)) { fprintf(stderr, "Already ni file is exist for %s\n", dllPath.c_str()); - return-1; + return -1; } std::string absDllPath = absolutePath(dllPath); std::string absNiPath = getNiFileName(dllPath); if (absNiPath.empty()) { fprintf(stderr, "Fail to get ni file name\n"); - return-1; + return -1; } pid_t pid = fork(); if (pid == -1) - return-1; + return -1; if (pid > 0) { int status;