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:
@@ -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' */
|
||||
|
Reference in New Issue
Block a user