Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
Another format-string fix.
Browse files Browse the repository at this point in the history
Oops - I found this in an editor autosave file after pushing the
previous commit. I meant it to be part of the previous commit. Oh
well, better late than never.
  • Loading branch information
sgtatham committed Jun 20, 2017
1 parent 34389fe commit 98cbe69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tree234.c
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ static void *delpos234_internal(tree234 * t, int index)
LOG((" moving to subtree %d\n", ki));
sub = n->kids[ki];
if (!sub->elems[1]) {
LOG((" subtree has only one element!\n", ki));
LOG((" subtree has only one element!\n"));
if (ki > 0 && n->kids[ki - 1]->elems[1]) {
/*
* Case 3a, left-handed variant. Child ki has
Expand Down

0 comments on commit 98cbe69

Please sign in to comment.