From 78a810d9afec61d85ee908de8050fd77c7fe5a8c Mon Sep 17 00:00:00 2001
From: Stephen Swaney <sswaney@centurytel.net>
Date: Thu, 14 Oct 2004 19:06:44 +0000
Subject: [PATCH] fix bad return types for errors in Matrix_coerce().
 EXPP_ReturnPyObjError() should have been EXPP_ReturnIntError().

---
 source/blender/python/api2_2x/matrix.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/source/blender/python/api2_2x/matrix.c b/source/blender/python/api2_2x/matrix.c
index d515e06c672..8f5e2794062 100644
--- a/source/blender/python/api2_2x/matrix.c
+++ b/source/blender/python/api2_2x/matrix.c
@@ -850,7 +850,7 @@ int Matrix_coerce( PyObject ** m1, PyObject ** m2 )
 					tempI = PyMem_Malloc( 1 *
 							      sizeof( long ) );
 					if( tempI == NULL ) {
-						return ( EXPP_ReturnPyObjError
+						return ( EXPP_ReturnIntError
 							 ( PyExc_MemoryError,
 							   "problem allocating tempI\n\n" ) );
 					}
@@ -859,7 +859,7 @@ int Matrix_coerce( PyObject ** m1, PyObject ** m2 )
 							    sizeof( float ) );
 					if( mat == NULL ) {
 						PyMem_Free( tempI );
-						return ( EXPP_ReturnPyObjError
+						return ( EXPP_ReturnIntError
 							 ( PyExc_MemoryError,
 							   "problem allocating mat\n\n" ) );
 					}
@@ -878,7 +878,7 @@ int Matrix_coerce( PyObject ** m1, PyObject ** m2 )
 							      sizeof
 							      ( double ) );
 					if( tempF == NULL ) {
-						return ( EXPP_ReturnPyObjError
+						return ( EXPP_ReturnIntError
 							 ( PyExc_MemoryError,
 							   "problem allocating tempF\n\n" ) );
 					}
@@ -887,7 +887,7 @@ int Matrix_coerce( PyObject ** m1, PyObject ** m2 )
 							    sizeof( float ) );
 					if( mat == NULL ) {
 						PyMem_Free( tempF );
-						return ( EXPP_ReturnPyObjError
+						return ( EXPP_ReturnIntError
 							 ( PyExc_MemoryError,
 							   "problem allocating mat\n\n" ) );
 					}
-- 
GitLab