Fixed compiler warnings

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@799 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
dfishburn 2012-11-07 03:10:12 +00:00
parent 9943728938
commit ad31b5c30d
1 changed files with 2 additions and 2 deletions

View File

@ -330,12 +330,12 @@ static void parseString (vString *const string, const int delimiter)
else if (c == '\\')
{
c = fileGetc(); /* This maybe a ' or ". */
if (c == ' ' )
if (c == ' ')
{
/* Line continuation character ignore reset of line */
fileSkipToCharacter ('\n');
}
else if (c != '\n');
else if (c != '\n')
{
/* Line continuation character already at end of line */
vStringPut(string, c);