Browse Source

Add CUDA error message prefix

cl-refactor
Paweł Bylica 8 years ago
parent
commit
91f9e0ff6e
No known key found for this signature in database GPG Key ID: 7A0C037434FE77EF
  1. 2
      libethash-cuda/ethash_cuda_miner.cpp

2
libethash-cuda/ethash_cuda_miner.cpp

@ -205,7 +205,7 @@ void ethash_cuda_miner::listDevices()
}
catch(std::runtime_error const& err)
{
std::cerr << err.what() << '\n';
std::cerr << "CUDA error: " << err.what() << '\n';
}
}

Loading…
Cancel
Save