Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
Add CUDA error message prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Jun 7, 2017
1 parent 0748bbe commit 91f9e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libethash-cuda/ethash_cuda_miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
}

Expand Down

0 comments on commit 91f9e0f

Please sign in to comment.