packages feed

system-fileio 0.3.12 → 0.3.13

raw patch · 2 files changed

+4/−4 lines, 2 files

Files

lib/hssystemfileio-win32.c view
@@ -7,8 +7,8 @@ int hssystemfileio_copy_permissions(const wchar_t *old_path, const wchar_t *new_path) {-	struct _stat st;-	int rc = _wstat(old_path, &st);+	struct _stat64 st;+	int rc = _wstat64(old_path, &st); 	if (rc == -1) 	{ return rc; } 	
system-fileio.cabal view
@@ -1,5 +1,5 @@ name: system-fileio-version: 0.3.12+version: 0.3.13 license: MIT license-file: license.txt author: John Millikin <jmillikin@gmail.com>@@ -42,7 +42,7 @@ source-repository this   type: git   location: https://john-millikin.com/code/haskell-filesystem/-  tag: system-fileio_0.3.12+  tag: system-fileio_0.3.13  library   ghc-options: -Wall -O2