Revert "fast-import: fix compilation on MinGW"

This reverts commit 54d99a7724.

A dummy implementation of getppid was added to the compat
layer, so this ifdef is no longer needed.
This commit is contained in:
Steffen Prohaska
2008-07-02 16:18:12 +02:00
parent 76fbe95f5e
commit 17e3d3f605

View File

@@ -391,9 +391,7 @@ static void write_crash_report(const char *err)
fprintf(rpt, "fast-import crash report:\n");
fprintf(rpt, " fast-import process: %d\n", getpid());
#ifndef __MINGW32__
fprintf(rpt, " parent process : %d\n", getppid());
#endif
fprintf(rpt, " at %s\n", show_date(time(NULL), 0, DATE_LOCAL));
fputc('\n', rpt);