pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-09-03
2014-09-03 18:41:39 by Martin Nilsson <nilsson@opera.com>
c9d3974ffd4786bb477a9e85573ef531ebe2f563 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
Don't cast memcpy void* arguments.
173:
void upd_int(int offset, INT32 tmp) {
-
memcpy(Pike_compiler->new_program->program+offset,
(char *)
&tmp,sizeof(tmp));
+
memcpy(Pike_compiler->new_program->program+offset, &tmp,
sizeof(tmp));
} INT32 read_int(int offset)