Skip to content
Snippets Groups Projects
Commit 3005ae08 authored by brade%netscape.com's avatar brade%netscape.com
Browse files

add curly braces to reduce Macintosh compiler warnings

parent 55325034
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ NS_IMETHODIMP nsISO2022JPToUnicode::Convert(PRUnichar * aDest,
if (res != NS_OK) res = NS_ERROR_UNEXPECTED;
} else {
// find the end of this run
for (p=src; ((p < srcEnd) && (*p != 27)); p++);
for (p=src; ((p < srcEnd) && (*p != 27)); p++) {;}
res = ConvertBuffer(&src, p, &dest, destEnd);
if (res == NS_PARTIAL_MORE_INPUT) if (p == srcEnd) {
mBuff[0] = *src++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment