Skip to content

Commit 8d0f6d5

Browse files
authored
Merge pull request #2743 from masatake/update-libreadtags
Update libreadtags
2 parents 848a833 + 31a59be commit 8d0f6d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libreadtags/readtags.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -931,14 +931,14 @@ static tagResult find (tagFile *const file, tagEntry *const entry,
931931
(file->sortMethod == TAG_FOLDSORTED && file->search.ignorecase))
932932
{
933933
#ifdef DEBUG
934-
printf ("<performing binary search>\n");
934+
fputs ("<performing binary search>\n", stderr);
935935
#endif
936936
result = findBinary (file);
937937
}
938938
else
939939
{
940940
#ifdef DEBUG
941-
printf ("<performing sequential search>\n");
941+
fpruts ("<performing sequential search>\n", stderr);
942942
#endif
943943
result = findSequential (file);
944944
}

0 commit comments

Comments
 (0)