Eliminated some harmless compiler warnings.
This commit is contained in:
parent
b6ec5707e8
commit
6d4c38a3c8
@ -53,7 +53,9 @@ register MAT3mat result_mat, mat;
|
|||||||
|
|
||||||
MAT3direction_matrix(result_mat, mat);
|
MAT3direction_matrix(result_mat, mat);
|
||||||
|
|
||||||
if (ret = MAT3invert(tmp_mat, tmp_mat)) MAT3transpose(result_mat, tmp_mat);
|
if ( (ret = MAT3invert(tmp_mat, tmp_mat)) ) {
|
||||||
|
MAT3transpose(result_mat, tmp_mat);
|
||||||
|
}
|
||||||
|
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
* This file contains routines that operate solely on matrices.
|
* This file contains routines that operate solely on matrices.
|
||||||
* -------------------------------------------------------------------------*/
|
* -------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
#include "mat3defs.h"
|
#include "mat3defs.h"
|
||||||
|
|
||||||
/* #include "macros.h" */
|
/* #include "macros.h" */
|
||||||
|
Loading…
Reference in New Issue
Block a user