summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/c-index-test/c-index-test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c
index 873233575c..b76661fac6 100644
--- a/tools/c-index-test/c-index-test.c
+++ b/tools/c-index-test/c-index-test.c
@@ -1452,11 +1452,10 @@ static int inspect_cursor_at(int argc, const char **argv) {
cspell = clang_getCString(Spelling);
if (cspell && strlen(cspell) != 0) {
unsigned pieceIndex;
- CXSourceRange range, extent;
- extent = clang_getCursorExtent(Cursor);
printf(" Spelling=%s (", cspell);
for (pieceIndex = 0; ; ++pieceIndex) {
- range = clang_Cursor_getSpellingNameRange(Cursor, pieceIndex, 0);
+ CXSourceRange range =
+ clang_Cursor_getSpellingNameRange(Cursor, pieceIndex, 0);
if (clang_Range_isNull(range))
break;
PrintRange(range, 0);