Skip to content

Commit c4e2b7d

Browse files
committed
FIX: removing forgotten debug trace line
1 parent 501a392 commit c4e2b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/os/posix/host-lib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1285,7 +1285,7 @@ static int Try_Browser(char *browser, REBCHR *url)
12851285
if (0 > waitpid(pid, &status, WUNTRACED)) {
12861286
result = FALSE;
12871287
} else {
1288-
printf("status: %i WIFEXITED: %i WEXITSTATUS: %i\n", status, WIFEXITED(status), WEXITSTATUS(status) );
1288+
//printf("status: %i WIFEXITED: %i WEXITSTATUS: %i\n", status, WIFEXITED(status), WEXITSTATUS(status) );
12891289
result = WIFEXITED(status)
12901290
&& (WEXITSTATUS(status) == 0);
12911291
}

0 commit comments

Comments
 (0)