Skip to content
Snippets Groups Projects
Commit 179ffa2d authored by Unknown's avatar Unknown
Browse files

Cleaner display
parent 294b9582
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@ void minethd::work_main()
if((results[i] | 0xEB000000u) != 0xEB000000u)
{
printf("Invalid NH nonce on AMD - 0x%x\n", results[i]);
printf("Invalid NH nonce on AMD - 0x%.8x\n", results[i]);
exit(0);
}
......
......@@ -409,7 +409,7 @@ void minethd::work_main()
{
if((result.iNonce | 0xEB000000u) != 0xEB000000u)
{
printf("Invalid NH nonce on CPU SINGLE - 0x%x\n", result.iNonce);
printf("Invalid NH nonce on CPU SINGLE - 0x%.8x\n", result.iNonce);
exit(0);
}
......@@ -565,7 +565,7 @@ void minethd::double_work_main()
if((iNonce-1 | 0xEB000000u) != 0xEB000000u)
{
printf("Invalid NH nonce on CPU DOUBLE - 0x%x\n", iNonce-1);
printf("Invalid NH nonce on CPU DOUBLE - 0x%.8x\n", iNonce-1);
exit(0);
}
}
......@@ -576,7 +576,7 @@ void minethd::double_work_main()
if((iNonce | 0xEB000000u) != 0xEB000000u)
{
printf("Invalid NH nonce on CPU DOUBLE - 0x%x\n", iNonce);
printf("Invalid NH nonce on CPU DOUBLE - 0x%.8x\n", iNonce);
exit(0);
}
}
......
......@@ -284,7 +284,7 @@ void minethd::work_main()
if((foundNonce[i] | 0xEB000000u) != 0xEB000000u)
{
printf("Invalid NH nonce on NVIDIA - 0x%x\n", foundNonce[i];
printf("Invalid NH nonce on NVIDIA - 0x%.8x\n", foundNonce[i]);
exit(0);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment