Skip to content

Commit 31a59be

Browse files
committed
Merge commit 'ab45f8506c82c8d4f7dca4396a2df0623c7092e6' into update-libreadtags
2 parents 1973be4 + ab45f85 commit 31a59be

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)