Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae44f6f8 authored by Ian Coolidge's avatar Ian Coolidge Committed by Android Git Automerger
Browse files

am 52ea05c8: Merge "service: Fix permissions/properties argument order."

* commit '52ea05c8':
  service: Fix permissions/properties argument order.
parents 9bef55ab 52ea05c8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -663,8 +663,8 @@ bool Server::AddBlob(const Uuid &id, const Uuid &control_id, int properties,
  // Control attributes have fixed permissions/properties.
  btstat = internal_->AddCharacteristic(
      control_id,
      kPermissionRead | kPermissionWrite,
      kPropertyRead | kPropertyWrite);
      kPropertyRead | kPropertyWrite,
      kPermissionRead | kPermissionWrite);
  internal_->api_synchronize.wait(lock);

  // Finally, associate the control attribute with the value attribute.