From 2778aee105559fc8c47f993fb7926c1d98141f33 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 31 Dec 2018 21:54:58 -0500 Subject: [PATCH] Fix clang build [-Werror,-Wreorder] (nw) --- src/devices/machine/wd33c9x.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/machine/wd33c9x.cpp b/src/devices/machine/wd33c9x.cpp index 453fc018d49..8d0273a7e5c 100644 --- a/src/devices/machine/wd33c9x.cpp +++ b/src/devices/machine/wd33c9x.cpp @@ -312,18 +312,18 @@ wd33c9x_base_device::wd33c9x_base_device(const machine_config &mconfig, device_t , m_addr{ 0 } , m_regs{ 0 } , m_command_length{ 0 } - , m_mode{ MODE_D } , m_scsi_state{ IDLE } + , m_mode{ MODE_D } , m_xfr_phase{ 0 } , m_step_count{ 0 } , m_transfer_count{ 0 } , m_data_fifo{ 0 } , m_data_fifo_pos{ 0 } , m_data_fifo_size{ 0 } - , m_irq_cb{ *this } + , m_irq_fifo{ 0 } , m_irq_fifo_pos{ 0 } , m_irq_fifo_size{ 0 } - , m_irq_fifo{ 0 } + , m_irq_cb{ *this } , m_drq_cb{ *this } , m_drq_state{ false } , m_timer{ nullptr }