diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-03-16 20:51:25 -0300 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-07-02 19:07:45 -0300 |
commit | 614563884d2b19e514af233089e392127c4f4027 (patch) | |
tree | 12bf9a1c1de59421d81b920cb99539acc2b3fac1 /lisp/lisp.c | |
parent | 60643e8f0dcd86e65400160c0a6e264e7a2a081c (diff) |
Compile warning fixes.
Add parenthesis around a test where after macro expansion it looked like
boolexpr==boolres==boolres.
"Ansifiy" a function without arguments.
Diffstat (limited to 'lisp/lisp.c')
-rw-r--r-- | lisp/lisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/lisp.c b/lisp/lisp.c index 720c7df..4b393c1 100644 --- a/lisp/lisp.c +++ b/lisp/lisp.c @@ -5454,7 +5454,7 @@ LispBegin(void) } void -LispEnd() +LispEnd(void) { /* XXX needs to free all used memory, not just close file descriptors */ } |