fix minor

Implicitly treated as 'char' due to fun type casting rules...

a351943927
This commit is contained in:
Michael Davidsaver
2026-01-28 09:39:50 -08:00
parent 3145388df5
commit 6dba1d91f6
+1 -1
View File
@@ -315,7 +315,7 @@ struct GPROp : public OperationBase
// nothing more needed
} else {
throw std::logic_error(SB()<<"Invalid state "<<state<<" for GPR sendReply() ");
throw std::logic_error(SB()<<"Invalid state "<<int(state)<<" for GPR sendReply() ");
}
}
chan->statTx += chan->conn->enqueueTxBody(state==GPROp::Done ? CMD_DESTROY_REQUEST : (pva_app_msg_t)op);