Changeset 1810 for trunk/src/user32/wsprintf.cpp
- Timestamp:
- Nov 22, 1999, 9:33:25 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wsprintf.cpp
r1593 r1810 1 /* $Id: wsprintf.cpp,v 1. 1 1999-11-04 18:35:41 phallerExp $ */1 /* $Id: wsprintf.cpp,v 1.2 1999-11-22 20:33:25 sandervl Exp $ */ 2 2 3 3 /* … … 318 318 WPRINTF_DATA argData; 319 319 320 while ( *spec && (maxlen > 1))320 while (spec && *spec && (maxlen > 1)) 321 321 { 322 322 if (*spec != '%') { *p++ = *spec++; maxlen--; continue; } … … 396 396 CHAR number[20]; 397 397 398 while ( *spec && (maxlen > 1))398 while (spec && *spec && (maxlen > 1)) 399 399 { 400 400 if (*spec != '%') { *p++ = *spec++; maxlen--; continue; }
Note:
See TracChangeset
for help on using the changeset viewer.