Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
a2579cea
Commit
a2579cea
authored
Jun 25, 2013
by
Raymond Toy
Browse files
Initialize some variables to get rid of some clang warnings.
parent
faf5cd6d
Changes
1
Show whitespace changes
Inline
Side-by-side
src/lisp/parse.c
View file @
a2579cea
...
@@ -225,7 +225,7 @@ char *
...
@@ -225,7 +225,7 @@ char *
parse_addr
(
char
**
ptr
)
parse_addr
(
char
**
ptr
)
{
{
char
*
token
=
parse_token
(
ptr
);
char
*
token
=
parse_token
(
ptr
);
long
result
;
long
result
=
0
;
if
(
token
==
NULL
)
{
if
(
token
==
NULL
)
{
printf
(
"Expected an address.
\n
"
);
printf
(
"Expected an address.
\n
"
);
...
@@ -316,7 +316,7 @@ parse_lispobj(char **ptr)
...
@@ -316,7 +316,7 @@ parse_lispobj(char **ptr)
{
{
char
*
token
=
parse_token
(
ptr
);
char
*
token
=
parse_token
(
ptr
);
long
pointer
;
long
pointer
;
lispobj
result
;
lispobj
result
=
0
;
if
(
token
==
NULL
)
{
if
(
token
==
NULL
)
{
printf
(
"Expected an object.
\n
"
);
printf
(
"Expected an object.
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment