Skip to content

Commit ab45f85

Browse files
committed
Squashed 'libreadtags/' changes from fbc0e8d9..e5686cba
e5686cba Merge pull request #25 from masatake/use-stderr-for-debugging 278f5006 Don't use stdout for debugging purpose git-subtree-dir: libreadtags git-subtree-split: e5686cba1de68dc4d7540d4e23f3ec49c899b665
1 parent 693a09e commit ab45f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

readtags.c

Lines changed: 2 additions & 2 deletions
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)