From 3952cb9343326ddda103a74337e45f17772d9abf Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 8 Jun 2016 06:04:28 +0100 Subject: [PATCH] Fix Linux compile error. --- YSFGateway/APRSWriterThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YSFGateway/APRSWriterThread.cpp b/YSFGateway/APRSWriterThread.cpp index c38b1e2..de17205 100644 --- a/YSFGateway/APRSWriterThread.cpp +++ b/YSFGateway/APRSWriterThread.cpp @@ -104,7 +104,7 @@ void CAPRSWriterThread::entry() if (!m_connected){ LogError("Reconnect attempt to the APRS server has failed"); - Sleep(10000UL); // 10 secs + sleep(10000UL); // 10 secs } }