* Fixed build O:)

* Removed warning from asm_x86_bea plugin
This commit is contained in:
Nibble 2009-02-20 16:29:12 +01:00
parent 8e86cb69c9
commit 1b71e0e52d
2 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@ static int disassemble(struct r_asm_t *a, struct r_asm_aop_t *aop, u8 *buf, u64
aop->inst_len = Disasm(&disasm_obj);
snprintf(aop->buf_asm, 256, &disasm_obj.CompleteInstr);
snprintf(aop->buf_asm, 256, disasm_obj.CompleteInstr);
if (aop->inst_len > 0) {
r_hex_bin2str(buf, aop->inst_len, aop->buf_hex);

View File

@ -5,6 +5,7 @@
#include "r_io.h"
#include "r_lib.h"
#include "r_lang.h"
#include "r_asm.h"
#include "r_anal.h"
#include "r_cmd.h"
#include "r_meta.h"