From 81a1776bbd35e55f8512a3c14ac55c9f36f0ebad Mon Sep 17 00:00:00 2001 From: Pan7 Date: Thu, 27 Apr 2017 21:58:43 +0200 Subject: [PATCH] Fix more extraneous parentheses warnings --- libs/picomodel/pm_md2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/picomodel/pm_md2.c b/libs/picomodel/pm_md2.c index c1011cfb..c49481bc 100644 --- a/libs/picomodel/pm_md2.c +++ b/libs/picomodel/pm_md2.c @@ -519,7 +519,7 @@ static picoModel_t *_md2_load( PM_PARAMS_LOAD ){ continue; } - else if ( ( p_index_LUT[p_md2Triangle->index_xyz[j]].next == NULL ) ) { // Not equal to Main entry, and no LL entry + else if ( p_index_LUT[p_md2Triangle->index_xyz[j]].next == NULL ) { // Not equal to Main entry, and no LL entry // Add first entry of LL from Main p_index_LUT2 = (index_LUT_t *)_pico_alloc( sizeof( index_LUT_t ) ); if ( p_index_LUT2 == NULL ) {