summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/stg/MiscClosures.h2
-rw-r--r--rts/Linker.c2
-rw-r--r--rts/PrimOps.cmm2
3 files changed, 3 insertions, 3 deletions
diff --git a/includes/stg/MiscClosures.h b/includes/stg/MiscClosures.h
index d2b933deb0..e714be3ef0 100644
--- a/includes/stg/MiscClosures.h
+++ b/includes/stg/MiscClosures.h
@@ -348,7 +348,7 @@ RTS_FUN_DECL(stg_newByteArrayzh);
RTS_FUN_DECL(stg_newPinnedByteArrayzh);
RTS_FUN_DECL(stg_newAlignedPinnedByteArrayzh);
RTS_FUN_DECL(stg_shrinkMutableByteArrayzh);
-RTS_FUN_DECL(stg_resizzeMutableByteArrayzh);
+RTS_FUN_DECL(stg_resizeMutableByteArrayzh);
RTS_FUN_DECL(stg_casIntArrayzh);
RTS_FUN_DECL(stg_newArrayzh);
RTS_FUN_DECL(stg_newArrayArrayzh);
diff --git a/rts/Linker.c b/rts/Linker.c
index a0ad90c6fe..e3ee085f82 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -1195,7 +1195,7 @@ typedef struct _RtsSymbolVal {
SymI_HasProto(stg_newPinnedByteArrayzh) \
SymI_HasProto(stg_newAlignedPinnedByteArrayzh) \
SymI_HasProto(stg_shrinkMutableByteArrayzh) \
- SymI_HasProto(stg_resizzeMutableByteArrayzh) \
+ SymI_HasProto(stg_resizeMutableByteArrayzh) \
SymI_HasProto(newSpark) \
SymI_HasProto(performGC) \
SymI_HasProto(performMajorGC) \
diff --git a/rts/PrimOps.cmm b/rts/PrimOps.cmm
index ee50f7fed5..bcd9c935ab 100644
--- a/rts/PrimOps.cmm
+++ b/rts/PrimOps.cmm
@@ -158,7 +158,7 @@ stg_shrinkMutableByteArrayzh ( gcptr mba, W_ new_size )
// MutableByteArray resized in-place or, if not possible, a newly
// allocated (unpinned) MutableByteArray (with the original content
// copied over)
-stg_resizzeMutableByteArrayzh ( gcptr mba, W_ new_size )
+stg_resizeMutableByteArrayzh ( gcptr mba, W_ new_size )
// MutableByteArray# s -> Int# -> State# s -> (# State# s,MutableByteArray# s #)
{
W_ new_size_wds;