Ignore:
Timestamp:
Nov 13, 2002, 12:50:07 PM (23 years ago)
Author:
sandervl
Message:

Wine resync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/setupapi/parser.c

    r8667 r9403  
    2828
    2929#include "windef.h"
    30 #include "ntddk.h"
     30#include "winternl.h"
    3131#include "winbase.h"
    3232#include "winerror.h"
     
    16671667        for (p = field->text; *p && isxdigitW(*p); p++)
    16681668        {
    1669             if ((value <<= 8) > 255)
     1669            if ((value <<= 4) > 255)
    16701670            {
    16711671                SetLastError( ERROR_INVALID_DATA );
Note: See TracChangeset for help on using the changeset viewer.