c-index-test.c: Fix missing semicolon(s).

llvm-svn: 159486
This commit is contained in:
NAKAMURA Takumi 2012-06-30 11:47:18 +00:00
parent c0560064dd
commit 1e43baa602
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@ char *dirname(char* path)
else
*base2 = 0;
else if (base1)
*base1 = 0
*base1 = 0;
else if (base2)
*base2 = 0
*base2 = 0;
return path;
}