Changeset 4268 for trunk/src/kernel32


Ignore:
Timestamp:
Sep 16, 2000, 2:09:59 AM (25 years ago)
Author:
bird
Message:

Corrected logging in GetModuleFileName. (Fatal error, mixed a handle and
a string pointer.)

File:
1 edited

Legend:

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

    r4266 r4268  
    1 /* $Id: wprocess.cpp,v 1.95 2000-09-15 14:33:54 bird Exp $ */
     1/* $Id: wprocess.cpp,v 1.96 2000-09-16 00:09:59 bird Exp $ */
    22
    33/*
     
    14361436
    14371437    if (cch > 0)
    1438         dprintf(("KERNEL32:  GetModuleFileNameA(%x,...): %s %d\n", lpszPath, hModule, cch));
     1438        dprintf(("KERNEL32:  GetModuleFileNameA(%x,...): %s %d\n", hModule, lpszPath, cch));
    14391439    else
    14401440        dprintf(("KERNEL32:  WARNING: GetModuleFileNameA(%x,...) - not found!", hModule));
     
    15061506
    15071507    if (cch > 0)
    1508         dprintf(("KERNEL32:  GetModuleFileNameW(%x,...): %s %d\n", lpszPath, hModule, cch));
     1508        dprintf(("KERNEL32:  GetModuleFileNameW(%x,...): %s %d\n", hModule, lpszPath, cch));
    15091509    else
    15101510        dprintf(("KERNEL32:  WARNING: GetModuleFileNameW(%x,...) - not found!", hModule));
Note: See TracChangeset for help on using the changeset viewer.