Takashi Iwai
73ae5365b2
- Update to 2.1.1. OBS-URL: https://build.opensuse.org/request/show/317620 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=81
25 lines
709 B
Diff
25 lines
709 B
Diff
--- a/lib-src/libnyquist/nyquist/xlisp/xlbfun.c
|
|
+++ b/lib-src/libnyquist/nyquist/xlisp/xlbfun.c
|
|
@@ -603,7 +603,10 @@
|
|
{
|
|
xllastarg();
|
|
xlcleanup();
|
|
- /* compiler might (wrongly) complain there is no return value */
|
|
+ /* 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);
|
|
}
|
|
|
|
/* xtoplevel - special form 'top-level' */
|
|
--- a/src/PluginManager.h
|
|
+++ b/src/PluginManager.h
|
|
@@ -161,7 +161,6 @@
|
|
|
|
typedef wxArrayString PluginIDList;
|
|
|
|
-class ProviderMap;
|
|
class PluginRegistrationDialog;
|
|
|
|
class PluginManager : public PluginManagerInterface
|