--- np2/i386c/ia32/disasm.c 2005/03/12 12:32:54 1.9 +++ np2/i386c/ia32/disasm.c 2011/01/15 17:33:32 1.11 @@ -1,5 +1,3 @@ -/* $Id: disasm.c,v 1.9 2005/03/12 12:32:54 monaka Exp $ */ - /* * Copyright (c) 2004 NONAKA Kimihiro * All rights reserved. @@ -639,7 +637,7 @@ ea(disasm_context_t *ctx) * get opcode */ static int -op(disasm_context_t *ctx) +get_opcode(disasm_context_t *ctx) { const char *opcode; UINT8 op[3]; @@ -802,7 +800,7 @@ disasm(UINT32 *eip, disasm_context_t *ct ctx->baseaddr = ctx->eip; ctx->pad = ' '; - rv = op(ctx); + rv = get_opcode(ctx); if (rv) { memset(ctx, 0, sizeof(disasm_context_t)); return rv;