aboutsummaryrefslogtreecommitdiff
path: root/ldump.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-27 12:58:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-27 12:58:05 -0300
commit420cc62facc5b49d0aebfb9be7ddfe911d77ff97 (patch)
tree0ad2341511bd07e78434808b5e5a71f71bd5e323 /ldump.c
parent1a3ebc203a04a4b312d1692d41eeda7035ea0eef (diff)
downloadlua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.tar.gz
lua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.tar.bz2
lua-420cc62facc5b49d0aebfb9be7ddfe911d77ff97.zip
missplelling in comments/function names (endianess -> endianness)
Diffstat (limited to 'ldump.c')
-rw-r--r--ldump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldump.c b/ldump.c
index 5076c430..0c42d772 100644
--- a/ldump.c
+++ b/ldump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldump.c,v 2.26 2014/03/11 18:05:46 roberto Exp roberto $ 2** $Id: ldump.c,v 2.27 2014/03/11 18:56:27 roberto Exp roberto $
3** save precompiled Lua chunks 3** save precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -27,7 +27,7 @@ typedef struct {
27 27
28/* 28/*
29** All high-level dumps go through DumpVector; you can change it to 29** All high-level dumps go through DumpVector; you can change it to
30** change the endianess of the result 30** change the endianness of the result
31*/ 31*/
32#define DumpVector(v,n,D) DumpBlock(v,(n)*sizeof((v)[0]),D) 32#define DumpVector(v,n,D) DumpBlock(v,(n)*sizeof((v)[0]),D)
33 33