Skip to content

Commit

Permalink
Merge pull request #4 from irtimmer/fix-include-platform
Browse files Browse the repository at this point in the history
Case-sensative correct include of platform.h
  • Loading branch information
cgutman committed May 11, 2015
2 parents d9c46b6 + 387f1c0 commit b071d91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions limelight-common/LinkedBlockingQueue.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "platform.h"
#include "Platform.h"
#include "PlatformThreads.h"

#define LBQ_SUCCESS 0
Expand All @@ -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);
PLINKED_BLOCKING_QUEUE_ENTRY LbqFlushQueueItems(PLINKED_BLOCKING_QUEUE queueHead);

0 comments on commit b071d91

Please sign in to comment.