Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
f3c95589
Commit
f3c95589
authored
Nov 21, 2013
by
Raymond Toy
Browse files
Fix compiler warning about using %lx with an int.
parent
8674b2d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lisp/gencgc.c
View file @
f3c95589
...
...
@@ -1194,7 +1194,7 @@ gc_alloc_new_region(int nbytes, int unboxed, struct alloc_region *alloc_region)
for
(
p
=
(
int
*
)
alloc_region
->
start_addr
;
p
<
(
int
*
)
alloc_region
->
end_addr
;
p
++
)
if
(
*
p
!=
0
)
fprintf
(
stderr
,
"** new region not zero @ %lx: %
l
x
\n
"
,
fprintf
(
stderr
,
"** new region not zero @ %lx: %x
\n
"
,
(
unsigned
long
)
p
,
*
p
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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