summaryrefslogtreecommitdiffstats
path: root/src/btparser/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/btparser/thread.c')
-rw-r--r--src/btparser/thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/btparser/thread.c b/src/btparser/thread.c
index 1a7f715e..af480eb3 100644
--- a/src/btparser/thread.c
+++ b/src/btparser/thread.c
@@ -238,17 +238,17 @@ btp_thread_remove_frames_below_n(struct btp_thread *thread,
void
btp_thread_append_to_str(struct btp_thread *thread,
- struct btp_strbuf *str,
+ struct strbuf *str,
bool verbose)
{
int framecount = btp_thread_get_frame_count(thread);
if (verbose)
{
- btp_strbuf_append_strf(str, "Thread no. %d (%d frames)\n",
+ strbuf_append_strf(str, "Thread no. %d (%d frames)\n",
thread->number, framecount);
}
else
- btp_strbuf_append_str(str, "Thread\n");
+ strbuf_append_str(str, "Thread\n");
struct btp_frame *frame = thread->frames;
while (frame)