aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-10 01:18:25 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-10 01:18:25 +0100
commit2e22ca3b03b294e32d392e00180c228aed4121da (patch)
tree461042425c8c58a045b32d0dbd5ab54208c7f94d
parentmds-kbdc: compile-layout: m bug fix + more test cases (diff)
downloadmds-2e22ca3b03b294e32d392e00180c228aed4121da.tar.gz
mds-2e22ca3b03b294e32d392e00180c228aed4121da.tar.bz2
mds-2e22ca3b03b294e32d392e00180c228aed4121da.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--src/libmdsserver/macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libmdsserver/macros.h b/src/libmdsserver/macros.h
index b72fd0a..b39d750 100644
--- a/src/libmdsserver/macros.h
+++ b/src/libmdsserver/macros.h
@@ -351,7 +351,7 @@
/**
- * `remalloc` wrapper that returns whether the allocation was not successful
+ * `realloc` wrapper that returns whether the allocation was not successful
*
* @param var:type* The variable to which to assign the reallocation
* @param elements:size_t The number of elements to allocate
@@ -363,7 +363,7 @@
/**
- * `xremalloc` that stores the old variable
+ * `xrealloc` that stores the old variable
*
* @param old:type* The variable to which to store with the old variable that needs
* to be `free`:ed on failure, and set to `NULL` on success.