diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-17 16:48:23 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-17 16:48:23 +0100 |
commit | 77511c68e4f8dad16bd215b541c53cd730d0df51 (patch) | |
tree | 0d1595551ec08d86b9cf592fa47fda1740ee087d /common.h | |
parent | test: improve portability (diff) | |
download | libar2-77511c68e4f8dad16bd215b541c53cd730d0df51.tar.gz libar2-77511c68e4f8dad16bd215b541c53cd730d0df51.tar.bz2 libar2-77511c68e4f8dad16bd215b541c53cd730d0df51.tar.xz |
Fix typo: libar2_earse -> libar2_erase
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ #define MIN(A, B) ((A) < (B) ? (A) : (B)) -#define ERASE(PTR, N) libar2_earse(PTR, N) +#define ERASE(PTR, N) libar2_erase(PTR, N) #define ERASE_ARRAY(ARR) ERASE(ARR, sizeof(ARR)) #define ERASE_STRUCT(S) ERASE(&(S), sizeof(S)) |