Skip to content

Commit 3ed88b2

Browse files
author
Seeker04
committed
The plx: prefix was missing from two FFI calls
1 parent 97407f8 commit 3ed88b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plwm.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1999,7 +1999,7 @@
19991999
query_outputs(OutputInfos) :-
20002000
(xrandr_available ->
20012001
display(Dp), rootwin(Rootwin),
2002-
(xrr_get_screen_resources(Dp, Rootwin, ScreenResources, Outputs) ->
2002+
(plx:xrr_get_screen_resources(Dp, Rootwin, ScreenResources, Outputs) ->
20032003
RR_Connected is 0,
20042004
findall(Output-[X, Y, W, H], (
20052005
nth0(Idx, Outputs, _),
@@ -2009,7 +2009,7 @@
20092009
),
20102010
OutputInfos
20112011
),
2012-
xrr_free_screen_resources(ScreenResources)
2012+
plx:xrr_free_screen_resources(ScreenResources)
20132013
; true)
20142014
;
20152015
writeln(user_error, "XRandR extension not available"),

0 commit comments

Comments
 (0)