From 17e3d3f605ce39dd85dcded65cd6ba08ccf7ee73 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Wed, 2 Jul 2008 16:18:12 +0200 Subject: [PATCH] Revert "fast-import: fix compilation on MinGW" This reverts commit 54d99a7724a0c7fb53bcdc7d850034e9890a0138. A dummy implementation of getppid was added to the compat layer, so this ifdef is no longer needed. --- fast-import.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fast-import.c b/fast-import.c index 271b93cf76..e72b286794 100644 --- a/fast-import.c +++ b/fast-import.c @@ -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);