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

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159486 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2012-06-30 11:47:18 +00:00
Родитель 910ff3f7f0
Коммит 0fb474a932
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}