[git] CMU Common Lisp branch master updated. snapshot-2013-06-1-ga2579ce

This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp". The branch, master has been updated via a2579ceae31fe7072e417e51d2045f63add281c2 (commit) from faf5cd6df3c8fd377891082e2f3bbcbada81e1d6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a2579ceae31fe7072e417e51d2045f63add281c2 Author: Raymond Toy <toy.raymond@gmail.com> Date: Tue Jun 25 21:30:16 2013 -0700 Initialize some variables to get rid of some clang warnings. diff --git a/src/lisp/parse.c b/src/lisp/parse.c index 505ad07..f1256f6 100644 --- a/src/lisp/parse.c +++ b/src/lisp/parse.c @@ -225,7 +225,7 @@ char * parse_addr(char **ptr) { char *token = parse_token(ptr); - long result; + long result = 0; if (token == NULL) { printf("Expected an address.\n"); @@ -316,7 +316,7 @@ parse_lispobj(char **ptr) { char *token = parse_token(ptr); long pointer; - lispobj result; + lispobj result = 0; if (token == NULL) { printf("Expected an object.\n"); ----------------------------------------------------------------------- Summary of changes: src/lisp/parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- CMU Common Lisp
participants (1)
-
rtoy@common-lisp.net