]> granicus.if.org Git - clang/commitdiff
c-index-test.c: Fix missing semicolon(s).
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 30 Jun 2012 11:47:18 +0000 (11:47 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sat, 30 Jun 2012 11:47:18 +0000 (11:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159486 91177308-0d34-0410-b5e6-96231b3b80d8

tools/c-index-test/c-index-test.c

index 7f60925984188805bc1de7b702aee97eaf6a8634..787671fa9a5103104dedd37a50d00d42d40aefc9 100644 (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;
 }