Skip to content

Commit 43a95b5

Browse files
committed
processexecutor.cpp: fixed cast in IPC debug message
1 parent 1be43ac commit 43a95b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/processexecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ namespace {
154154
void writeToPipe(PipeSignal type, const std::string &data) const
155155
{
156156
if (mDebug)
157-
std::cout << "writeToPipe - " << static_cast<unsigned int>(type) << " - " << data << std::endl;
157+
std::cout << "writeToPipe - " << static_cast<char>(type) << " - " << data << std::endl;
158158

159159
{
160160
const auto t = static_cast<char>(type);

0 commit comments

Comments
 (0)