Changeset 4773 for trunk/src/win32k/misc/vprintf.c
- Timestamp:
- Dec 11, 2000, 7:20:49 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/misc/vprintf.c
r4164 r4773 1 /* $Id: vprintf.c,v 1. 8 2000-09-02 21:08:15bird Exp $1 /* $Id: vprintf.c,v 1.9 2000-12-11 06:20:48 bird Exp $ 2 2 * 3 3 * vprintf and printf … … 105 105 const char *pszC = psz; 106 106 107 while ( *psz != '\0' && cchMax-- > 0)107 while (cchMax-- > 0 && *psz != '\0') 108 108 psz++; 109 109
Note:
See TracChangeset
for help on using the changeset viewer.