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

Esse commit está contido em:
Aryan Salmanpour
2019-07-09 23:05:19 -04:00
commit de Maneesh Gupta
commit 69b15b5580
+1 -1
Ver Arquivo
@@ -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;
}
}