summaryrefslogtreecommitdiff
path: root/include/compiler.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2016-10-14 15:05:28 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2016-10-14 15:05:28 -0700
commit44e3a1108778aae07c5c2aa7a065900adcc517bc (patch)
treeda58b6ac4a4e658cf04e922a7938a39c012bc393 /include/compiler.h
parent9b733a5845ee908a640594f2ca4f303121961e12 (diff)
downloadnasm-44e3a1108778aae07c5c2aa7a065900adcc517bc.tar.gz
compiler.h: fix typo in the non-gcc case
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'include/compiler.h')
-rw-r--r--include/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/compiler.h b/include/compiler.h
index 267ccf65..b921a207 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -197,7 +197,7 @@ char *strsep(char **, const char *);
#endif
#ifndef safe_malloc
# define safe_malloc(s) safe_alloc
-# define safe_malloc2(s1,s2) save_alloc
+# define safe_malloc2(s1,s2) safe_alloc
# define safe_realloc(s) never_null
#endif