avoid build warning on windows

This commit is contained in:
Joey Hess 2020-01-01 14:40:00 -04:00
parent d0f3b01c31
commit 2000e9a4b8
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 3 additions and 1 deletions

View file

@ -22,7 +22,9 @@ import Annex.ReplaceFile
import Annex.InodeSentinal
import Annex.Content.LowLevel
import Utility.InodeCache
#if ! defined(mingw32_HOST_OS)
import Utility.Touch
#endif
{- Populates a pointer file with the content of a key.
-

View file

@ -61,9 +61,9 @@ import Creds
import Types.NumCopies
import Annex.Action
import Messages.Progress
import qualified Utility.RawFilePath as R
#ifndef mingw32_HOST_OS
import qualified Utility.RawFilePath as R
import Utility.FileMode
#endif