Commit e22a4e57 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Changed K&R C function definition to ANSI C.

parent 83d4560c
......@@ -1014,12 +1014,7 @@ static void db_task_printsym(unsigned int addr, int size)
DEBUG_PrintAddress( &address, db_disasm_16 ? 16 : 32, TRUE );
}
void
db_print_address(seg, size, addrp, byref)
char * seg;
int size;
struct i_addr *addrp;
int byref;
void db_print_address(char *seg, int size, struct i_addr *addrp, int byref)
{
if (addrp->is_reg) {
fprintf(stderr,"%s", db_reg[size][addrp->disp]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment