Ignore:
Timestamp:
Mar 29, 2000, 7:17:18 PM (25 years ago)
Author:
sandervl
Message:

Critical section changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/winimgres.cpp

    r3228 r3275  
    1 /* $Id: winimgres.cpp,v 1.33 2000-03-24 19:25:34 sandervl Exp $ */
     1/* $Id: winimgres.cpp,v 1.34 2000-03-29 17:17:18 sandervl Exp $ */
    22
    33/*
     
    224224    pData = getPEResourceEntry(id, type, lang);
    225225    if(pData == NULL) {
    226         dprintf(("Win32ImageBase::getPEResourceSize: couldn't find resource %d (type %d, lang %d)", id, type, lang));
     226        dprintf(("Win32ImageBase::getPEResourceSize: couldn't find resource %d (type %d, lang %x)", id, type, lang));
    227227        return 0;
    228228    }
     
    265265    if(pData == NULL) {
    266266        if(HIWORD(id)) {
    267                 dprintf(("Win32ImageBase::getPEResource %s: couldn't find resource %s (type %d, lang %d)", szModule, id, type, lang));
    268         }
    269         else    dprintf(("Win32ImageBase::getPEResource %s: couldn't find resource %d (type %d, lang %d)", szModule, id, type, lang));
     267                dprintf(("Win32ImageBase::getPEResource %s: couldn't find resource %s (type %d, lang %x)", szModule, id, type, lang));
     268        }
     269        else    dprintf(("Win32ImageBase::getPEResource %s: couldn't find resource %d (type %d, lang %x)", szModule, id, type, lang));
    270270        return 0;
    271271    }
Note: See TracChangeset for help on using the changeset viewer.