monitor: Fix printing params for HCI Intel DDC command

The offset of value for HCI Intel DDC command is incorrect.
HCI Intel DDC parameter has a combination of following structure:

struct intel_ddc {
	u8  len;
	u16 id;
	u8  *value;
}

The offset of value should be sum of len and id which is 3.
1 file changed