[Qemu-devel] [PATCH] Fix a typo in 'P' packet processing for M68K.

2010-01-14 Thread Kazu Hirata
condition is meant to be n < 16 in: if (n < 8) { : } else if (n < 8) { Signed-off-by: Kazu Hirata --- gdbstub.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index 6180171..80477be 100644 --- a/gdbstub.c +++ b/gdbstub.

Re: [Qemu-devel] [patch] Fix a typo in 'P' packet processing for M68K.

2010-01-14 Thread Kazu Hirata
Hi Aurelien, I don't have a write access to the repository. Could someone apply this patch if it's OK? This patch looks ok, but is missing a Signed-of-by: Thank you for a review. I'm going to resubmit the patch in the git style. Kazu Hirata

[Qemu-devel] [patch] Fix a typo in 'P' packet processing for M68K.

2009-12-24 Thread Kazu Hirata
condition is meant to be n < 16 in: if (n < 8) { : } else if (n < 8) { I don't have a write access to the repository. Could someone apply this patch if it's OK? Thanks in advance, Kazu Hirata diff --git a/gdbstub.c b/gdbstub.c index 055093f..1a1640a 100644 --- a/