Skip to content

Commit

Permalink
Improve SynthRdpUpdateConfiguration.
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Aug 1, 2024
1 parent b52e209 commit adf5cec
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions SynthRdp/SynthRdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1070,11 +1070,16 @@ int SynthRdpUpdateConfiguration(

if (ERROR_SUCCESS == Error)
{
std::printf("[Success] SynthRdpUpdateConfiguration\n");
std::printf(
"[Success] SynthRdpUpdateConfiguration %s\n",
Key.c_str());
}
else
{
std::printf("[Error] SynthRdpUpdateConfiguration (%d)\n", Error);
std::printf(
"[Error] SynthRdpUpdateConfiguration %s (%d)\n",
Key.c_str(),
Error);
}

return Error;
Expand Down

0 comments on commit adf5cec

Please sign in to comment.