Merge branch '0.5.x' into 0.6.0.x

Conflicts:
	src/main.cpp
	src/serialize.h
This commit is contained in:
Luke Dashjr
2012-05-04 18:57:03 +00:00
5 changed files with 23 additions and 6 deletions

View File

@@ -237,7 +237,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
*pend = '\0';
char* p1 = pszBuffer;
char* p2;
while (p2 = strchr(p1, '\n'))
while ((p2 = strchr(p1, '\n')))
{
p2++;
char c = *p2;