From 387f1c0c130fd04147f5ce9a76524e23fff1cfad Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Mon, 11 May 2015 17:05:18 +0200 Subject: [PATCH] Case-sensative correct include of platform.h --- limelight-common/LinkedBlockingQueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/limelight-common/LinkedBlockingQueue.h b/limelight-common/LinkedBlockingQueue.h index 033aec2..e501bd5 100644 --- a/limelight-common/LinkedBlockingQueue.h +++ b/limelight-common/LinkedBlockingQueue.h @@ -1,6 +1,6 @@ #pragma once -#include "platform.h" +#include "Platform.h" #include "PlatformThreads.h" #define LBQ_SUCCESS 0 @@ -27,4 +27,4 @@ int LbqInitializeLinkedBlockingQueue(PLINKED_BLOCKING_QUEUE queueHead, int sizeB int LbqOfferQueueItem(PLINKED_BLOCKING_QUEUE queueHead, void* data); int LbqWaitForQueueElement(PLINKED_BLOCKING_QUEUE queueHead, void** data); PLINKED_BLOCKING_QUEUE_ENTRY LbqDestroyLinkedBlockingQueue(PLINKED_BLOCKING_QUEUE queueHead); -PLINKED_BLOCKING_QUEUE_ENTRY LbqFlushQueueItems(PLINKED_BLOCKING_QUEUE queueHead); \ No newline at end of file +PLINKED_BLOCKING_QUEUE_ENTRY LbqFlushQueueItems(PLINKED_BLOCKING_QUEUE queueHead);