Build Fix
authorAdam Banasiak <a.banasiak@samsung.com>
Wed, 9 Oct 2013 09:05:23 +0000 (11:05 +0200)
committerSoo-Hyun Choi <sh9.choi@samsung.com>
Wed, 9 Oct 2013 09:12:39 +0000 (18:12 +0900)
[Issue#]   N/A
[Problem]  Build break.
[Cause]    Missing ; at the end.
[Solution] Fixed

Change-Id: Ibcdb80d224e1235c012d7af35a64c641c67fd603

src/jobs/widget_install/directory_api.cpp

index 806e078..dd8aa07 100644 (file)
@@ -75,7 +75,7 @@ bool DirectoryCopy(std::string source, std::string dest)
             outfile.close();
             infile.close();
 
-            errno = 0
+            errno = 0;
             if (-1 == TEMP_FAILURE_RETRY(chown(destFile.c_str(),
                                                statInfo.st_uid,
                                                statInfo.st_gid))) {