summaryrefslogtreecommitdiffstats
path: root/src/core/api/qtbug-61521.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/api/qtbug-61521.cpp')
-rw-r--r--src/core/api/qtbug-61521.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/api/qtbug-61521.cpp b/src/core/api/qtbug-61521.cpp
index 86d5998ef..1dcc4cfac 100644
--- a/src/core/api/qtbug-61521.cpp
+++ b/src/core/api/qtbug-61521.cpp
@@ -100,7 +100,7 @@ SHIM_HIDDEN void* ShimCalloc(size_t n, size_t size) {
}
SHIM_HIDDEN void ShimCFree(void* ptr) {
- cfree(ptr);
+ free(ptr);
}
SHIM_HIDDEN void* ShimMemalign(size_t align, size_t s) {