From dc3bbe24c57d12a86b7feae6aa79a000a9f244e5 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 10 Sep 2004 16:31:15 +0000 Subject: [PATCH] Fix Solatis futimes macro --- compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat.h b/compat.h index 6f0f8ba3f..a049a1a32 100644 --- a/compat.h +++ b/compat.h @@ -215,7 +215,7 @@ typedef struct sigaction sigaction_t; * Define futimes() in terms of futimesat() if needed. */ #if !defined(HAVE_FUTIMES) && defined(HAVE_FUTIMESAT) -# define futimes(_f, _p, _tv) futimesat(_f, NULL, _tv) +# define futimes(_f, _tv) futimesat(_f, NULL, _tv) # define HAVE_FUTIMES #endif -- 2.50.1