summaryrefslogtreecommitdiff
path: root/pcr/collada-dom/0001-fix-return-type-thanks-to-22.patch
blob: eb3b944e24b11ef6feba504a82bf851218e2aad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From 8e65676c1cbecde1c0c4d8c2e1cfb20fc49c410b Mon Sep 17 00:00:00 2001
From: rosen <rosen.diankov@mujin.co.jp>
Date: Wed, 24 Feb 2016 12:49:14 +0900
Subject: [PATCH] fix return type thanks to #22

---
 dom/src/dae/daeMetaGroup.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dom/src/dae/daeMetaGroup.cpp b/dom/src/dae/daeMetaGroup.cpp
index 25fd9cc..c34ac4c 100644
--- a/dom/src/dae/daeMetaGroup.cpp
+++ b/dom/src/dae/daeMetaGroup.cpp
@@ -26,7 +26,7 @@ daeElement *daeMetaGroup::placeElement( daeElement *parent, daeElement *child, d
 	(void)offset;
 	daeString nm = child->getElementName();
 	if ( findChild( nm ) == NULL ) {
-		return false;
+		return NULL;
 	}
 	daeElementRef el;
 
-- 
2.8.2