From: Andres Freund Date: Sat, 2 Dec 2017 01:28:05 +0000 (-0800) Subject: Adjust #ifdef EXEC_BACKEND RemovePgTempFilesInDir() call. X-Git-Tag: REL_11_BETA1~1124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec6a04005618c206163761e5739a8b90debd6b1e;p=postgresql Adjust #ifdef EXEC_BACKEND RemovePgTempFilesInDir() call. Other callers were adjusted in the course of dc6c4c9dc2a111519b76b22daaaac86c5608223b. Per buildfarm. --- diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 2e93e4ad63..ecd6d85270 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -3020,7 +3020,7 @@ RemovePgTempFiles(void) * DataDir as well. */ #ifdef EXEC_BACKEND - RemovePgTempFilesInDir(PG_TEMP_FILES_DIR); + RemovePgTempFilesInDir(PG_TEMP_FILES_DIR, false); #endif }