From f5e3382d581e1e5d7ff32258f9e0f33c99c4fe67 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?L=C3=A9o=20Terziman?= <leo.terziman@clarte.asso.fr>
Date: Wed, 30 Oct 2013 17:29:26 +0100
Subject: [PATCH] Correct some warnings when building with mingw

---
 include/assimp/types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/assimp/types.h b/include/assimp/types.h
index 070c5d224..93076f534 100644
--- a/include/assimp/types.h
+++ b/include/assimp/types.h
@@ -177,7 +177,7 @@ struct aiColor3D
 	bool operator < (const aiColor3D& other) const {
 		return r < other.r || (
 			r == other.r && (g < other.g ||
-				g == other.g && b < other.b
+				(g == other.g && b < other.b)
 			)
 		);
 	}