diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-02-20 11:08:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-02-20 11:08:21 -0300 |
commit | d0c038da07ee85c70cf891d803824fd7fd1832ff (patch) | |
tree | 4502ab82f1bc80c3fe1d3b5b581a515c1d07bae5 /lmem.h | |
parent | db424053e80b996cdfd1a736c5230485ce965801 (diff) | |
download | lua-d0c038da07ee85c70cf891d803824fd7fd1832ff.tar.gz lua-d0c038da07ee85c70cf891d803824fd7fd1832ff.tar.bz2 lua-d0c038da07ee85c70cf891d803824fd7fd1832ff.zip |
typo in comment
Diffstat (limited to 'lmem.h')
-rw-r--r-- | lmem.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmem.h,v 1.38 2011/12/02 13:26:54 roberto Exp $ | 2 | ** $Id: lmem.h,v 1.39 2012/11/14 17:21:34 roberto Exp roberto $ |
3 | ** Interface to Memory Manager | 3 | ** Interface to Memory Manager |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -18,7 +18,7 @@ | |||
18 | ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is | 18 | ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is |
19 | ** always constant. | 19 | ** always constant. |
20 | ** The macro is somewhat complex to avoid warnings: | 20 | ** The macro is somewhat complex to avoid warnings: |
21 | ** +1 avoids warnings of "comparsion has constant result"; | 21 | ** +1 avoids warnings of "comparison has constant result"; |
22 | ** cast to 'void' avoids warnings of "value unused". | 22 | ** cast to 'void' avoids warnings of "value unused". |
23 | */ | 23 | */ |
24 | #define luaM_reallocv(L,b,on,n,e) \ | 24 | #define luaM_reallocv(L,b,on,n,e) \ |