aboutsummaryrefslogtreecommitdiffhomepage
path: root/memprof
diff options
context:
space:
mode:
authorAYMEN <53928879+AYMENJD@users.noreply.github.com>2024-12-05 15:41:30 +0300
committerGitHub <noreply@github.com>2024-12-05 15:41:30 +0300
commitd5445065e639fa673b86933062650d671eb419a2 (patch)
treed7e3ad2e37115094f738b9d6418d72f3416848af /memprof
parentd0f077f3c0dfdadf36ef4c273368ae18bb9e8ed2 (diff)
Minor improvements. (#3169)
Diffstat (limited to 'memprof')
-rw-r--r--memprof/memprof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/memprof/memprof.cpp b/memprof/memprof.cpp
index e6564e66a..c14914bc6 100644
--- a/memprof/memprof.cpp
+++ b/memprof/memprof.cpp
@@ -285,7 +285,7 @@ void *realloc(void *ptr, std::size_t size) {
return new_ptr;
}
-void *memalign(std::size_t aligment, std::size_t size) {
+void *memalign(std::size_t alignment, std::size_t size) {
my_assert(false && "Memalign is unsupported");
return nullptr;
}