Ignore:
Timestamp:
Nov 5, 1999, 6:42:13 PM (26 years ago)
Author:
achimha
Message:

source code cleanup, remove warnings

File:
1 edited

Legend:

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

    r1532 r1621  
    1 /* $Id: time.cpp,v 1.5 1999-10-31 18:15:13 sandervl Exp $ */
     1/* $Id: time.cpp,v 1.6 1999-11-05 17:42:12 achimha Exp $ */
    22
    33/*
     
    658658   its possible that it fails when the time looks like ss:mm:hh as example*/
    659659   if (tflags & (TIME_NOMINUTESORSECONDS))
    660    { if ((pos = strstr ( format, ":mm")))
     660   { if ((pos = strstr ( format, ":mm")) != 0)
    661661     { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
    662662     }
    663663   }
    664664   if (tflags & (TIME_NOSECONDS))
    665    { if ((pos = strstr ( format, ":ss")))
     665   { if ((pos = strstr ( format, ":ss")) != 0)
    666666     { memcpy ( pos, pos+3, strlen(format)-(pos-format)-2 );
    667667     }
Note: See TracChangeset for help on using the changeset viewer.