Skip to content
Snippets Groups Projects
Commit a2579cea authored by Raymond Toy's avatar Raymond Toy
Browse files

Initialize some variables to get rid of some clang warnings.

parent faf5cd6d
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment