Commit 9fb15b41 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

rpcrt4: Make the fixme for an unhandled packet type more useful by printing the…

rpcrt4: Make the fixme for an unhandled packet type more useful by printing the code of the unhandled packet type.
parent 4de56b1b
......@@ -287,7 +287,7 @@ static void RPCRT4_process_packet(RpcConnection* conn, RpcPktHdr* hdr, RPC_MESSA
break;
default:
FIXME("unhandled packet type\n");
FIXME("unhandled packet type %u\n", hdr->common.ptype);
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment