diff options
author | kotontrion <[email protected]> | 2024-12-20 09:49:58 +0100 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-12-20 09:49:58 +0100 |
commit | fcef5cea5ca84fa06a74e69de34e84b4d0842fcc (patch) | |
tree | 798de065ecce20a6f5892bc729ef73455abe209c /lib/astal/io/variable.vala | |
parent | 5ed7a1416c2532188a7e01fead3842602fdb670f (diff) | |
parent | d7d11b341db85ce9768fa06b6f225d713621ec56 (diff) |
Merge branch 'main' into feat/wayland-glib
Diffstat (limited to 'lib/astal/io/variable.vala')
-rw-r--r-- | lib/astal/io/variable.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/astal/io/variable.vala b/lib/astal/io/variable.vala index 312a27a..e4105f8 100644 --- a/lib/astal/io/variable.vala +++ b/lib/astal/io/variable.vala @@ -172,7 +172,7 @@ public class AstalIO.Variable : VariableBase { return_if_fail(watch_proc == null); return_if_fail(watch_exec != null); - watch_proc = new Process.subprocessv(watch_exec); + watch_proc = Process.subprocessv(watch_exec); watch_proc.stdout.connect((str) => set_closure(str, watch_transform)); watch_proc.stderr.connect((str) => this.error(str)); } |