From 1cf28c4192d005413e9a5cc26fe50b237df1f1b5 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 25 Jul 2025 15:27:12 +0200 Subject: [PATCH] tool_filetime.h whitespace, comments git grep -E '# *if +!?defined\( *([A-Z0-9_]+) *\)' | grep -v -E '(\|\||&&)' --- src/tool_filetime.c | 2 +- src/tool_filetime.h | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/tool_filetime.c b/src/tool_filetime.c index f4ff3a4291..e3f4129b36 100644 --- a/src/tool_filetime.c +++ b/src/tool_filetime.c @@ -151,4 +151,4 @@ void setfiletime(curl_off_t filetime, const char *filename, #endif } } -#endif /* defined(HAVE_UTIME) || defined(HAVE_UTIMES) || defined(_WIN32) */ +#endif /* HAVE_UTIME || HAVE_UTIMES || _WIN32 */ diff --git a/src/tool_filetime.h b/src/tool_filetime.h index 4830b218c3..6c0c442070 100644 --- a/src/tool_filetime.h +++ b/src/tool_filetime.h @@ -30,13 +30,12 @@ struct GlobalConfig; int getfiletime(const char *filename, struct GlobalConfig *global, curl_off_t *stamp); -#if defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ +#if defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ (defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8)) void setfiletime(curl_off_t filetime, const char *filename, struct GlobalConfig *global); #else #define setfiletime(a,b,c) tool_nop_stmt -#endif /* defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \ - (defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8)) */ +#endif #endif /* HEADER_CURL_TOOL_FILETIME_H */