projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27c86e2
)
fdc: fix typo in zero constant
author
Hervé Poussineau
<hpoussin@reactos.org>
Mon, 20 Aug 2012 11:50:34 +0000
(13:50 +0200)
committer
Kevin Wolf
<kwolf@redhat.com>
Wed, 14 Nov 2012 17:19:22 +0000
(18:19 +0100)
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/fdc.c
patch
|
blob
|
history
diff --git
a/hw/fdc.c
b/hw/fdc.c
index a197c48b9759e27a46c807c9d1d92bd1aee667cf..de8778b7faa57cf98d53d1ebc434a91189832a67 100644
(file)
--- a/
hw/fdc.c
+++ b/
hw/fdc.c
@@
-1244,7
+1244,7
@@
static void fdctrl_start_transfer(FDCtrl *fdctrl, int direction)
fdctrl->data_state |= FD_STATE_MULTI;
else
fdctrl->data_state &= ~FD_STATE_MULTI;
- if (fdctrl->fifo[5] == 0
0
) {
+ if (fdctrl->fifo[5] == 0) {
fdctrl->data_len = fdctrl->fifo[8];
} else {
int tmp;