[hip][samples] fix a typo in module_api/defaultDriver sample (#1210)

[ROCm/hip commit: f21601733e]
This commit is contained in:
Aryan Salmanpour
2019-07-09 23:05:19 -04:00
committed by Maneesh Gupta
parent d46430b450
commit 706d958297
@@ -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;
}
}