Ignore:
Timestamp:
Oct 28, 1999, 8:23:34 PM (26 years ago)
Author:
sandervl
Message:

dll + stippath fixes

File:
1 edited

Legend:

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

    r1221 r1496  
    1 /* $Id: oslibmisc.cpp,v 1.3 1999-10-09 13:33:24 sandervl Exp $ */
     1/* $Id: oslibmisc.cpp,v 1.4 1999-10-28 18:23:34 sandervl Exp $ */
    22
    33/*
     
    283283  pszFilename = strrchr(path, '\\');                 /* find rightmost slash */
    284284  if (pszFilename != NULL)
    285     return (pszFilename++);              /* return pointer to next character */
     285    return (++pszFilename);              /* return pointer to next character */
    286286 
    287287  pszFilename = strrchr(path, '/');                  /* find rightmost slash */
    288288  if (pszFilename != NULL)
    289     return (pszFilename++);              /* return pointer to next character */
     289    return (++pszFilename);              /* return pointer to next character */
    290290 
    291291  return (path);                                     /* default return value */
Note: See TracChangeset for help on using the changeset viewer.