From 4729f1908091107c44ad0156e23136c6f3a05ced Mon Sep 17 00:00:00 2001
From: jsiegle <jsiegle@mit.edu>
Date: Thu, 20 Jun 2013 15:36:15 -0400
Subject: [PATCH] Remove _t on types in File Reader

---
 Source/Processors/FileReader.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/Processors/FileReader.cpp b/Source/Processors/FileReader.cpp
index e67534939..d19692c6b 100644
--- a/Source/Processors/FileReader.cpp
+++ b/Source/Processors/FileReader.cpp
@@ -35,8 +35,8 @@ FileReader::FileReader()
     enabledState(false);
 
     // check endianness of the platform
-    uint32_t magic = 0x00000001;
-    uint8_t black_magic = *(uint8_t *)&magic;
+    uint32 magic = 0x00000001;
+    uint8 black_magic = *(uint8 *)&magic;
 
     if (black_magic > 0)
     {
-- 
GitLab