Forgot to cast the type

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1866 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
unzner
2012-10-30 11:09:59 +00:00
parent 22634f6103
commit ccc4aca728

View File

@ -202,7 +202,8 @@ bool L4SysExperiment::run() {
// now check if we want to add the instruction for fault injection
if (instrFilter != NULL &&
instrFilter->isValidInstr(curr_addr, calculateInstructionAddress())) {
instrFilter->isValidInstr(curr_addr,
reinterpret_cast<char const*>(calculateInstructionAddress()))) {
accepted++;
TraceInstr new_instr;
new_instr.trigger_addr = curr_addr;