Ignore:
Timestamp:
Nov 30, 2001, 6:49:22 PM (24 years ago)
Author:
phaller
Message:

Fixed out-of-scope FIXME,TRACE,WARN macros

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/url.c

    r6712 r7502  
    1515#undef FIXME
    1616#ifdef DEBUG
     17// PH 2001-11-30
     18// this macro definition causes the control leave the scope of a
     19// non-curly-braced preceeding if statement. Therefore,
     20//   if (p!=NULL)
     21//      TRACE("p->a=%d", p->a)
     22// crashes.
     23//
     24// !!! ENSURE TRACES AND FIXMES WITH PRECEEDING IF STATEMENT
     25// !!! ARE PUT INTO CURLY BRACES
    1726#define FIXME WriteLog("FIXME %s", __FUNCTION__); WriteLog
    1827#else
     
    188197
    189198    if(dwFlags & ~URL_ESCAPE_SPACES_ONLY)
    190         FIXME("Unimplemented flags: %08lx\n", dwFlags);
     199    {
     200      FIXME("Unimplemented flags: %08lx\n", dwFlags);
     201    }
    191202
    192203    for(src = pszUrl; *src; src++) {
Note: See TracChangeset for help on using the changeset viewer.