Changeset 1533 for trunk/dll/excputil.c


Ignore:
Timestamp:
May 30, 2010, 7:34:46 PM (15 years ago)
Author:
Gregg Young
Message:

Fixed possible loss of precision compiler warnings by casting the variables in question.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/excputil.c

    r1442 r1533  
    247247    else {
    248248      is32Bit = FALSE;
    249       u.stk16.usIP = pContext->ctx_RegEip;
    250       u.stk16.usBP = pContext->ctx_RegEbp;
     249      u.stk16.usIP = (SHORT) pContext->ctx_RegEip;
     250      u.stk16.usBP = (SHORT) pContext->ctx_RegEbp;
    251251    }
    252252
Note: See TracChangeset for help on using the changeset viewer.