diff options
Diffstat (limited to 'boehm-gc/if_mach.c')
-rw-r--r-- | boehm-gc/if_mach.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boehm-gc/if_mach.c b/boehm-gc/if_mach.c index fd6009e1c35..3dcccf21f5a 100644 --- a/boehm-gc/if_mach.c +++ b/boehm-gc/if_mach.c @@ -14,7 +14,7 @@ char ** envp; if (strcmp(MACH_TYPE, argv[1]) != 0) return(0); if (strcmp(OS_TYPE, "") != 0 && strcmp(argv[2], "") != 0 && strcmp(OS_TYPE, argv[2]) != 0) return(0); - printf("^^^^Starting command^^^^\n"); + fprintf(stderr, "^^^^Starting command^^^^\n"); fflush(stdout); execvp(argv[3], argv+3); perror("Couldn't execute"); |