Fixed second typo.

From-SVN: r134686
This commit is contained in:
Kai Tietz 2008-04-26 02:16:36 +02:00
parent d4a1808cf1
commit 7f98ca2249
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ make_raw_shell_str( char* pz_d, tCC* pz_s, size_t smax )
*(pz_d++) = '\'';
for (;;) {
if (((size_t) (pz_d - pz_d_start) >= smax)
if ((size_t) (pz_d - pz_d_start) >= smax)
return (char*)NULL;
switch (*(pz_d++) = *(pz_s++)) {
case NUL: