Skip to content

Commit d7f0cd8

Browse files
committed
Fix typo
1 parent cd522c7 commit d7f0cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

call.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (o *Object) GetProperty(p string) (Variant, error) {
6060
prop := p[idx+1:]
6161

6262
result := Variant{}
63-
err := obj.Call("org.freedesktop.DBus.Properties.Get", 0, iface, prop).Store(&result)
63+
err := o.Call("org.freedesktop.DBus.Properties.Get", 0, iface, prop).Store(&result)
6464

6565
if err != nil {
6666
return Variant{}, err

0 commit comments

Comments
 (0)