From 9e4350b6fb615b5499d8a2a623c9bda5885f92cc Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Thu, 23 Dec 2021 10:28:12 +0100 Subject: [PATCH] app/spdk_top: Rename print_bottom_error_message() https://review.spdk.io/gerrit/c/spdk/spdk/+/10016 renamed this function to print_bottom_message() and this particular instance was left behind. Signed-off-by: Michal Berger Change-Id: I422dfb317c6c5b8c2ce60b580fb92556c306040b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10837 Reviewed-by: Tomasz Zawadzki Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins --- app/spdk_top/spdk_top.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/spdk_top/spdk_top.c b/app/spdk_top/spdk_top.c index 5fd69638337..c2bdec9971a 100644 --- a/app/spdk_top/spdk_top.c +++ b/app/spdk_top/spdk_top.c @@ -2305,7 +2305,7 @@ display_thread(uint64_t thread_id, uint8_t current_page) /* We did not find this thread, so we cannot show its information. */ if (i == g_last_threads_count) { - print_bottom_error_message("This thread does not exist."); + print_bottom_message("This thread does not exist."); pthread_mutex_unlock(&g_thread_lock); return; }