[LIBOPENMP][NVPTX]Fix the build error in the runtime.

This commit is contained in:
Alexey Bataev 2019-12-17 14:33:03 -05:00
parent fff8ec9813
commit 15d47deedd

View File

@ -358,7 +358,7 @@ EXTERN void omp_unset_lock(omp_lock_t *lock) {
EXTERN int omp_test_lock(omp_lock_t *lock) {
int rc = __kmpc_impl_test_lock(lock);
PRINT(LD_IO, "call omp_test_lock() return %d\n", ret);
PRINT(LD_IO, "call omp_test_lock() return %d\n", rc);
return rc;
}