Fixes for anal/w32

This commit is contained in:
pancake 2015-11-23 14:38:47 +01:00
parent 96990424cc
commit 8f34d0cf83
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ linux-x86-32.sdb: linux-x86-32
%.sdb:%
ifneq ($(SILENT),)
@echo "SDB $<"
@echo SDB $<
@rm -f $<.sdb
@cat $< | ${SDB} $<.sdb =
@test -f $<.sdb

View File

@ -90,7 +90,7 @@ RAnalReilArg *reil_pop_arg(RAnalEsil *esil) {
// Get the next available temp register.
void get_next_temp_reg(RAnalEsil *esil, char *buf) {
snprintf (buf, REGBUFSZ, REIL_TEMP_PREFIX"_%02d",
snprintf (buf, REGBUFSZ, REIL_TEMP_PREFIX"_%02"PFMT64d,
esil->Reil->reilNextTemp);
esil->Reil->reilNextTemp++;
}