From e86df92fa55733c0e053436d08b59b03b74ec70e Mon Sep 17 00:00:00 2001 From: Saeed Maleki Date: Fri, 17 Mar 2023 17:52:53 +0000 Subject: [PATCH] fixed a typo in debugging information --- tests/bootstrap_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bootstrap_test.cc b/tests/bootstrap_test.cc index 005a3057..ba588d9b 100644 --- a/tests/bootstrap_test.cc +++ b/tests/bootstrap_test.cc @@ -10,7 +10,7 @@ mscclppResult_t res = call; \ if (res != mscclppSuccess && res != mscclppInProgress) { \ /* Print the back trace*/ \ - printf("Failure at %s:%d -> %d", __FILE__, __LINE__, res); \ + printf("Failure at %s:%d -> %d\n", __FILE__, __LINE__, res); \ return res; \ } \ } while (0);