# HG changeset patch # User alexc # Date 1279572838 0 # Node ID 0a63bed2a00e621b91d0aea4b80524f8e3ba9b31 # Parent 8e087b8af4f1cffe3fdc8ae65927b51bfd00fb9e aacenc: Convert if () abort() to assert(). diff -r 8e087b8af4f1 -r 0a63bed2a00e aaccoder.c --- a/aaccoder.c Mon Jul 19 18:37:45 2010 +0000 +++ b/aaccoder.c Mon Jul 19 20:53:58 2010 +0000 @@ -488,7 +488,7 @@ idx = cb; ppos = max_sfb; while (ppos > 0) { - if (idx < 0) abort(); + assert(idx >= 0); cb = idx; stackrun[stack_len] = path[ppos][cb].run; stackcb [stack_len] = cb;