From 168bfc6ab15e74d950c05a7890202b7cdeb009b4 Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Fri, 18 Jan 2013 08:12:36 +0000 Subject: [PATCH] fixed typo caused compilation err --- bochs/instrument/example1/instrument.cc | 2 +- bochs/instrument/example1/instrument.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/instrument/example1/instrument.cc b/bochs/instrument/example1/instrument.cc index 35912775a..723746d59 100644 --- a/bochs/instrument/example1/instrument.cc +++ b/bochs/instrument/example1/instrument.cc @@ -171,7 +171,7 @@ void bxInstrumentation::bx_instr_hwinterrupt(unsigned vector, Bit16u cs, bx_addr } } -void bxInstrumentation::bx_instr_lin_access(bx_address lin, bx_phy_adress phy, unsigned len, unsigned rw) +void bxInstrumentation::bx_instr_lin_access(bx_address lin, bx_phy_address phy, unsigned len, unsigned rw) { if(!active || !ready) return; diff --git a/bochs/instrument/example1/instrument.h b/bochs/instrument/example1/instrument.h index 0c97b3ba2..fdbff6722 100644 --- a/bochs/instrument/example1/instrument.h +++ b/bochs/instrument/example1/instrument.h @@ -87,7 +87,7 @@ public: void bx_instr_exception(unsigned vector, unsigned error_code); void bx_instr_hwinterrupt(unsigned vector, Bit16u cs, bx_address eip); - void bx_instr_lin_access(bx_address lin, bx_phy_adress phy, unsigned len, unsigned rw); + void bx_instr_lin_access(bx_address lin, bx_phy_address phy, unsigned len, unsigned rw); private: void branch_taken(bx_address new_eip);