winedbg: Fix "floating pointer" typo.

This commit is contained in:
Michael Stefaniuc 2008-06-24 01:02:40 +02:00 committed by Alexandre Julliard
parent ec11a7b828
commit 7057d7a914

View file

@ -380,10 +380,10 @@ static DWORD dbg_handle_exception(const EXCEPTION_RECORD* rec, BOOL first_chance
dbg_printf("invalid float operation");
break;
case EXCEPTION_FLT_OVERFLOW:
dbg_printf("floating pointer overflow");
dbg_printf("floating point overflow");
break;
case EXCEPTION_FLT_UNDERFLOW:
dbg_printf("floating pointer underflow");
dbg_printf("floating point underflow");
break;
case EXCEPTION_FLT_STACK_CHECK:
dbg_printf("floating point stack check");