Commit a661a1c4 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] MSVC warning

parent b05b10d9
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@ ivas_error efap_init_data(
    }
#ifdef FIX_1050_EFAP_ALLOC
    /* calculate upper bound of number of polygons required (heuristic) */
    polyset_size = (int8_t) 2 * num_speaker_nodes + 8;
    polyset_size = (int8_t) ( 2 * num_speaker_nodes + 8 );

    /* Memory allocation for the polyset array */
    if ( ( efap->polyData.polysetArray = (EFAP_POLYSET *) malloc( polyset_size * sizeof( EFAP_POLYSET ) ) ) == NULL )