summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@ugent.be>2017-04-16 11:03:43 +0200
committerdimitri staessens <dimitri.staessens@ugent.be>2017-04-16 13:40:12 +0200
commitc884fb9d6b3d3ea59f5fc7c5d709bfff4fcf1849 (patch)
tree928c5a0cfaa7fb7c9511aba6c2f134bc407325e6
parentbc651653d50145a8ca3a09b7b1146bf3089ccf47 (diff)
downloadouroboros-c884fb9d6b3d3ea59f5fc7c5d709bfff4fcf1849.tar.gz
ouroboros-c884fb9d6b3d3ea59f5fc7c5d709bfff4fcf1849.zip
include: Fix typo in endian.h
-rw-r--r--include/ouroboros/endian.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ouroboros/endian.h b/include/ouroboros/endian.h
index 691e3f8b..4738159e 100644
--- a/include/ouroboros/endian.h
+++ b/include/ouroboros/endian.h
@@ -83,7 +83,7 @@
#define hton64(x) htobe64(x)
#define hton32(x) htobe32(x)
#define ntoh64(x) betoh64(x)
-#define noth32(x) betoh32(x)
+#define ntoh32(x) betoh32(x)
#define hton16(x) htobe16(x)
#define ntoh16(x) betoh16(x)