Commit 7f98ca22 by Kai Tietz

Fixed second typo.

From-SVN: r134686
parent d4a1808c
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment