diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:25:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-07-03 11:25:05 -0300 |
commit | 1ceec7437090bea4be7202b7f86e9d566e79f87f (patch) | |
tree | 3e4fdc60d744757fb8d6bf28282237383f593b80 | |
parent | 2a84c29bc33259cfc59e00956c953d235d3d8843 (diff) | |
download | lua-1ceec7437090bea4be7202b7f86e9d566e79f87f.tar.gz lua-1ceec7437090bea4be7202b7f86e9d566e79f87f.tar.bz2 lua-1ceec7437090bea4be7202b7f86e9d566e79f87f.zip |
useless test removed (pointed by lint)
-rw-r--r-- | ldump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldump.c,v 2.8 2006/02/17 15:51:03 roberto Exp roberto $ | 2 | ** $Id: ldump.c,v 2.9 2006/09/11 14:07:24 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 | */ |
@@ -60,7 +60,7 @@ static void DumpVector(const void* b, int n, size_t size, DumpState* D) | |||
60 | 60 | ||
61 | static void DumpString(const TString* s, DumpState* D) | 61 | static void DumpString(const TString* s, DumpState* D) |
62 | { | 62 | { |
63 | if (s==NULL || getstr(s)==NULL) | 63 | if (s==NULL) |
64 | { | 64 | { |
65 | size_t size=0; | 65 | size_t size=0; |
66 | DumpVar(size,D); | 66 | DumpVar(size,D); |