1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 06:01:13 +02:00

Fixed some Nyquist bugs, eliminate some compiler and wipro checker warnings

This commit is contained in:
rbdannenberg
2010-09-27 05:42:28 +00:00
parent c159d469d6
commit f37b4ab344
10 changed files with 76 additions and 11 deletions

View File

@@ -603,6 +603,9 @@ LVAL xcleanup(void)
{
xllastarg();
xlcleanup();
/* this point will never be reached because xlcleanup() does a
longjmp(). The return is added to avoid false positive
error messages from static analyzers and compilers */
return (NIL);
}
@@ -611,7 +614,10 @@ LVAL xtoplevel(void)
{
xllastarg();
xltoplevel();
return (NIL);
/* this point will never be reached because xltoplevel() does a
longjmp(). The return is added to avoid false positive
error messages from static analyzers and compilers */
return (NIL);
}
/* xcontinue - special form 'continue' */