projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8adca5c
)
Silence a warning about assignment in conditional
author
Juho Snellman
<jsnell@iki.fi>
Thu, 29 Sep 2011 09:05:06 +0000
(11:05 +0200)
committer
Juho Snellman
<jsnell@iki.fi>
Thu, 29 Sep 2011 09:05:06 +0000
(11:05 +0200)
src/runtime/coreparse.c
patch
|
blob
|
history
diff --git
a/src/runtime/coreparse.c
b/src/runtime/coreparse.c
index
bc562ba
..
85f2aa9
100644
(file)
--- a/
src/runtime/coreparse.c
+++ b/
src/runtime/coreparse.c
@@
-100,7
+100,7
@@
maybe_initialize_runtime_options(int fd)
lseek(fd, -end_offset, SEEK_END);
- if (new_runtime_options = read_runtime_options(fd)) {
+ if ((new_runtime_options = read_runtime_options(fd))) {
runtime_options = new_runtime_options;
}
}