forked from OSchip/llvm-project
c-index-test.c: Fix missing semicolon(s).
llvm-svn: 159486
This commit is contained in:
parent
c0560064dd
commit
1e43baa602
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue