fixed a typo in debugging information

This commit is contained in:
Saeed Maleki
2023-03-17 17:52:53 +00:00
parent 267d1f4f63
commit e86df92fa5

View File

@@ -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);