Ignore:
Timestamp:
Feb 12, 2002, 12:43:32 PM (24 years ago)
Author:
sandervl
Message:

logging updates

File:
1 edited

Legend:

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

    r6309 r7883  
    1 /* $Id: atom.cpp,v 1.11 2001-07-12 16:23:52 sandervl Exp $ */
     1/* $Id: atom.cpp,v 1.12 2002-02-12 11:43:31 sandervl Exp $ */
    22
    33/*
     
    279279
    280280    if(HIWORD(atomName)) {
    281          dprintf(("GlobalFindAtomA %s", atomName));
    282     }
    283     else dprintf(("GlobalFindAtomA %x", atomName));
     281         dprintf(("KERNEL32: GlobalFindAtomA %s", atomName));
     282    }
     283    else dprintf(("KERNEL32: GlobalFindAtomA %x", atomName));
    284284
    285285    atom = LookupAtom(atomTable, HIWORD(atomName) ?
    286286                      (PSZ) atomName : (PSZ) (LOWORD(atomName) | 0xFFFF0000),
    287287                      LOOKUP_FIND | LOOKUP_NOCASE);
    288     dprintf(("GlobalFindAtomA returned %x", atom));
     288    dprintf(("KERNEL32: GlobalFindAtomA returned %x", atom));
    289289
    290290    if(!atom) {
Note: See TracChangeset for help on using the changeset viewer.