File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ static void umfMemspaceHighestBandwidthInit(void) {
91
91
umfMemspaceHighestBandwidthCreate (& UMF_MEMSPACE_HIGHEST_BANDWIDTH );
92
92
if (ret != UMF_RESULT_SUCCESS ) {
93
93
LOG_ERR (
94
- "Creating the highest bandwidth memspace failed with a %u error\n " ,
94
+ "Creating the highest bandwidth memspace failed with the error: %u " ,
95
95
ret );
96
96
assert (ret == UMF_RESULT_ERROR_NOT_SUPPORTED );
97
97
}
Original file line number Diff line number Diff line change @@ -86,8 +86,9 @@ static void umfMemspaceLowestLatencyInit(void) {
86
86
umf_result_t ret =
87
87
umfMemspaceLowestLatencyCreate (& UMF_MEMSPACE_LOWEST_LATENCY );
88
88
if (ret != UMF_RESULT_SUCCESS ) {
89
- LOG_ERR ("Creating the lowest latency memspace failed with a %u error\n" ,
90
- ret );
89
+ LOG_ERR (
90
+ "Creating the lowest latency memspace failed with the error: %u" ,
91
+ ret );
91
92
assert (ret == UMF_RESULT_ERROR_NOT_SUPPORTED );
92
93
}
93
94
You can’t perform that action at this time.
0 commit comments