summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2017-06-23 14:39:12 -0700
committerH. Peter Anvin <hpa@zytor.com>2017-06-23 14:39:12 -0700
commitdf1eec03152742413927032325710450cdc425b9 (patch)
tree3bdbb21f94e52589bd43a3b047fb0d24f86c02ef
parent58d2ab176f7913eed965303aadfa2c19395ace65 (diff)
downloadnasm-df1eec03152742413927032325710450cdc425b9.tar.gz
saa: fix typo: LITTEENDIAN -> LITTLEENDIAN
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--nasmlib/saa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasmlib/saa.c b/nasmlib/saa.c
index c4af5aa0..1d457ac6 100644
--- a/nasmlib/saa.c
+++ b/nasmlib/saa.c
@@ -299,7 +299,7 @@ void saa_write8(struct SAA *s, uint8_t v)
saa_wbytes(s, &v, 1);
}
-#ifdef WORDS_LITTEENDIAN
+#ifdef WORDS_LITTLEENDIAN
void saa_write16(struct SAA *s, uint16_t v)
{