diff options
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index 0f9071ce..bbd26c20 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -724,7 +724,8 @@ getPluginABI (const char *name) if (!p || !p->vTable->getObjectOptions) return 0; - option = (*p->vTable->getObjectOptions) (p, &compDisplays->base, + /* MULTIDPYERROR: ABI options should be moved into core */ + option = (*p->vTable->getObjectOptions) (p, &core.displays->base, &nOption); return getIntOptionNamed (option, nOption, "abi", 0); |