Mercurial > nand-ecoscentric
changeset 2191:8d1deabc0273
* src/buffer.cxx: Fix the compiler warnings.
| author | asl |
|---|---|
| date | Mon, 08 May 2006 17:41:55 +0000 |
| parents | 97a57687a378 |
| children | 93a41cbd95d0 |
| files | packages/infra/current/ChangeLog packages/infra/current/src/buffer.cxx |
| diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/infra/current/ChangeLog +++ b/packages/infra/current/ChangeLog @@ -1,3 +1,7 @@ +2006-05-08 Sergei Gavrikov <sg@belvok.com> + + * src/buffer.cxx: Fix the compiler warnings. + 2005-11-04 Bart Veer <bartv@ecoscentric.com> * tests/cxxsupp.cxx: Fix the compiler warnings.
--- a/packages/infra/current/src/buffer.cxx +++ b/packages/infra/current/src/buffer.cxx @@ -682,7 +682,7 @@ cyg_trace_dump(void) "", t->get_stack_base(), #ifdef CYGDBG_KERNEL_DEBUG_GDB_THREAD_SUPPORT - t->get_saved_context(), + (int) t->get_saved_context(), #else 0, #endif @@ -697,7 +697,7 @@ cyg_trace_dump(void) diag_printf( "%20s queue = %08x wait info = %08x\n", "", - t->get_current_queue(), + (int) t->get_current_queue(), t->get_wait_info() );
