From 86df2a08fe745a4dd5967e24bc754f919ad4397f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 30 Oct 2018 11:09:45 -0400 Subject: [PATCH] fix windows build --- Utility/Touch.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utility/Touch.hs b/Utility/Touch.hs index 0b5688a8ac..e0ca92d4a2 100644 --- a/Utility/Touch.hs +++ b/Utility/Touch.hs @@ -38,7 +38,7 @@ import Data.Time.Clock.POSIX touchBoth :: FilePath -> POSIXTime -> POSIXTime -> Bool -> IO () touchBoth _ _ _ _ = return () -touch :: FilePath -> TimeSpec -> Bool -> IO () +touch :: FilePath -> POSIXTime -> Bool -> IO () touch _ _ _ = return () #endif