diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-01-06 14:51:40 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-01-09 12:57:46 +0000 |
commit | 81c69f305c79c181a2e15cf88615baa441dae755 (patch) | |
tree | d3b4f6fb757ffc908287c45a6a10df6fa569ef19 /rts/LinkerInternals.h | |
parent | 9e452874df05f5f98243576ffaefc2f356358038 (diff) | |
download | haskell-81c69f305c79c181a2e15cf88615baa441dae755.tar.gz |
Make the RTS linker API use wide-char pathnames on Windows (#5697)
I haven't been able to test whether this works or not due to #5754,
but at least it doesn't appear to break anything.
Diffstat (limited to 'rts/LinkerInternals.h')
-rw-r--r-- | rts/LinkerInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/LinkerInternals.h b/rts/LinkerInternals.h index d545c12ed9..dd4d7ed939 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -61,7 +61,7 @@ typedef struct { */ typedef struct _ObjectCode { OStatus status; - char* fileName; + pathchar *fileName; int fileSize; char* formatName; /* eg "ELF32", "DLL", "COFF", etc. */ |