From d9ddab08183cbd00a3e56f377f0be2a1bc561745 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 25 May 2015 11:28:40 -0700 Subject: [PATCH] Remove semicolon from #include "MemoryFree.h"; This causes a compiler warning. --- MemoryFree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MemoryFree.cpp b/MemoryFree.cpp index 6823004..bf57184 100644 --- a/MemoryFree.cpp +++ b/MemoryFree.cpp @@ -20,7 +20,7 @@ struct __freelist /* The head of the free list structure */ extern struct __freelist *__flp; -#include "MemoryFree.h"; +#include "MemoryFree.h" /* Calculates the size of the free list */ int freeListSize()