X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh_common.c;h=80fcbe8b663b85f36f4699df197dc303664bc6b1;hp=74701460c9163aa008c2839ef42ca580ca19db37;hb=5e602a80cef93a5f80bcbe6d0de5a8e2e2d1c060;hpb=03d45daad787b8f2ced3070e80c4550bf4b02931 diff --git a/afh_common.c b/afh_common.c index 74701460..80fcbe8b 100644 --- a/afh_common.c +++ b/afh_common.c @@ -10,6 +10,7 @@ #include /* gettimeofday */ #include #include +#include #include "para.h" #include "error.h" @@ -205,9 +206,9 @@ success: */ const char *audio_format_name(int i) { - //PARA_NOTICE_LOG("array size: %u¸ requested: %d\n", ARRAY_SIZE(afl), i); - assert(i < 0 || i < ARRAY_SIZE(afl) - 1); - return i >= 0? afl[i].name : "(none)"; + if (i < 0 || i >= ARRAY_SIZE(afl) - 1) + return "???"; + return afl[i].name; } /**