Commit f50d7325 authored by Ben Walker's avatar Ben Walker Committed by Jim Harris
Browse files

thread: Fix check that prevented a debug log from printing



Change-Id: I4947c8fae27e9f5fcd282d0ef89accf6aba238da
Signed-off-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-on: https://review.gerrithub.io/436396


Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarChangpeng Liu <changpeng.liu@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 7d38f166
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -380,7 +380,7 @@ spdk_thread_poll(struct spdk_thread *thread, uint32_t max_msgs)
		}

#ifdef DEBUG
		if (rc == -1) {
		if (poller_rc == -1) {
			SPDK_DEBUGLOG(SPDK_LOG_THREAD, "Poller %p returned -1\n", poller);
		}
#endif