Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix U+2010 typo which prevents successful building on MSYS2 CLANGARM64 #334

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ tests/*.o
tests/*.hi
tests/*.normalised
*~
.vscode
2 changes: 1 addition & 1 deletion System/Posix/Files/Common.hsc
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ defaultStatxMask = mempty
newtype ExtendedFileStatus = ExtendedFileStatus (ForeignPtr CStatx) -- ^ The constructor is considered internal and may change.

-- | The "preferred" block size for efficient filesystem I/O.
-- (Writing to a file in smaller chunks may cause an inefficient read-mod‐ify-rewrite.)
-- (Writing to a file in smaller chunks may cause an inefficient read-modify-rewrite.)
fileBlockSizeX :: ExtendedFileStatus -> CBlkSize
#if HAVE_STATX
-- | Further status information about the file.
Expand Down
Loading