Commit Diff


commit - eea47b7eab5ae60db6af643e9518a0b691d13bc6
commit + f12d0dbe463b659998c2426d120b6ef7b02ba401
blob - d4231ab7fd2fa49502c2682203c13a5f74971865
blob + 40d1c255b2f0d4d970b035519e51d69d91523940
--- got/got.c
+++ got/got.c
@@ -185,7 +185,7 @@ apply_unveil(const char *repo_path, const char *worktr
 	if (worktree_path && unveil(worktree_path, "rwc") != 0)
 		return got_error_from_errno();
 
-	if ( unveil("/tmp", "rwc") != 0)
+	if (unveil("/tmp", "rwc") != 0)
 		return got_error_from_errno();
 
 	error = got_privsep_unveil_exec_helpers();
blob - b84f94f06503e6d5b35b471cf82f9a072506cb51
blob + cc1fcce3ecd81ce4456ebc56847872abd1a8d919
--- tog/tog.c
+++ tog/tog.c
@@ -1622,7 +1622,7 @@ apply_unveil(const char *repo_path, const char *worktr
 	if (worktree_path && unveil(worktree_path, "rwc") != 0)
 		return got_error_from_errno();
 
-	if ( unveil("/tmp", "rwc") != 0)
+	if (unveil("/tmp", "rwc") != 0)
 		return got_error_from_errno();
 
 	error = got_privsep_unveil_exec_helpers();