Skip to content
Snippets Groups Projects
Commit 9fb15b41 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard
Browse files

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

rpcrt4: Make the fixme for an unhandled packet type more useful by printing the code of the unhandled packet type.
parent 4de56b1b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment