diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-10 20:51:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-10 20:51:39 +0300 |
commit | 29935a154644a5593330593166611aec4d225b27 (patch) | |
tree | 2772a80a715ab358cc97b7f62e5c2256c888d50c /protocols | |
parent | fd759b7af2ad824149b8ef7459a5865490cee192 (diff) |
got tired of this DbgBreak()...
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MRA/src/Mra_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/src/Mra_proto.cpp b/protocols/MRA/src/Mra_proto.cpp index 0c057efd27..70100b814f 100644 --- a/protocols/MRA/src/Mra_proto.cpp +++ b/protocols/MRA/src/Mra_proto.cpp @@ -1545,7 +1545,7 @@ bool CMraProto::MraCommandDispatcher(mrim_packet_header_t *pmaHeader) break;
default:
- _CrtDbgBreak();
+ debugLogA("Uknown packet type: %d", pmaHeader->msg);
break;
}
return true;
|