Commit c350c65d authored by TYAGIRIS's avatar TYAGIRIS
Browse files

Merge branch 'ivas-float-update' of...

Merge branch 'ivas-float-update' of ssh://forge.3gpp.org:29419/sa4/audio/ivas-basop into ivas-float-update
parents 69fd19d5 ceb8871f
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@
#include "options.h"
#ifdef DEBUGGING
#include "debug.h"
#include <assert.h>
#ifdef DEBUG_MODE_INFO
#ifdef DEBUG_MODE_INFO_TWEAK
#include <sys/stat.h>
@@ -778,11 +779,13 @@ char *fname(
    const int16_t id,
    const int16_t enc_dec )
{
    char idd[5] = ".idX";
    idd[3] = (char) ( id + '0' );
#ifdef DEBUG_FORCE_DIR
    size_t len;
#endif
    char idd[6];

    assert( id < 100 );
    sprintf( idd, ".id%d", id );

    strcpy( tmp_fname, dir );
#ifdef DEBUG_FORCE_DIR