From dc4d6050c3e79b52070b75ea12450486e6e71e45 Mon Sep 17 00:00:00 2001 From: Aryan Salmanpour Date: Tue, 9 Jul 2019 23:05:19 -0400 Subject: [PATCH] [hip][samples] fix a typo in module_api/defaultDriver sample (#1210) [ROCm/hip-tests commit: 69b15b55800784ed0476d51e83c9618645fe86ee] --- projects/hip-tests/samples/0_Intro/module_api/defaultDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip-tests/samples/0_Intro/module_api/defaultDriver.cpp b/projects/hip-tests/samples/0_Intro/module_api/defaultDriver.cpp index 9fa0b0ee09..ea36aabcf4 100644 --- a/projects/hip-tests/samples/0_Intro/module_api/defaultDriver.cpp +++ b/projects/hip-tests/samples/0_Intro/module_api/defaultDriver.cpp @@ -68,7 +68,7 @@ int main() { for (uint32_t i = 0; i < LEN; i++) { if (A[i] != B[i]) { mismatchCount++; - std::cout << "error: mismatch " << A[i] << " != " << C[i] << std::endl; + std::cout << "error: mismatch " << A[i] << " != " << B[i] << std::endl; } }