From b2ba6710712282305d2827624e6eab38316cce42 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Sun, 20 Sep 2020 14:07:42 +0100 Subject: [PATCH] Fix Windows compilation. --- LCDproc.cpp | 2 +- UDPSocket.h | 1 - Version.h | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/LCDproc.cpp b/LCDproc.cpp index 5f072e9..19ac15e 100644 --- a/LCDproc.cpp +++ b/LCDproc.cpp @@ -72,7 +72,7 @@ #include #include #else -#include +#include #endif #define BUFFER_MAX_LEN 128 diff --git a/UDPSocket.h b/UDPSocket.h index b22eefc..3f5585b 100644 --- a/UDPSocket.h +++ b/UDPSocket.h @@ -32,7 +32,6 @@ #include #include #else -#include #include #endif diff --git a/Version.h b/Version.h index a988871..3e08686 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20200906"; +const char* VERSION = "20200920"; #endif