diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-14 01:48:56 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-14 01:48:56 +0900 |
| commit | 048c1957f136347826990513d198e58d049446cd (patch) | |
| tree | 14953fd43820640ec8595a626934528203f15b3b /system/dbus | |
| parent | 790d77075e40ee3162d7925e983f01747b5c2c89 (diff) | |
helper/args: variadic check function
This package turns out to be much less widely used than anticipated, and might be facing removal. This change makes test cases cleaner.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'system/dbus')
| -rw-r--r-- | system/dbus/proxy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/dbus/proxy.go b/system/dbus/proxy.go index 385a8c7c..a3a60652 100644 --- a/system/dbus/proxy.go +++ b/system/dbus/proxy.go @@ -78,7 +78,7 @@ func Finalise(sessionBus, systemBus ProxyPair, session, system *hst.BusConfig) ( final = &Final{Session: sessionBus, System: systemBus} - final.WriterTo, err = helper.NewCheckedArgs(args) + final.WriterTo, err = helper.NewCheckedArgs(args...) if err != nil { return } |
