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

[ROCm/hip-tests commit: 69b15b5580]
This commit is contained in:
Aryan Salmanpour
2019-07-09 23:05:19 -04:00
کامیت شده توسط Maneesh Gupta
والد 4b1ef76944
کامیت dc4d6050c3
@@ -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;
}
}