summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer/NotificationServer.ipc
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-01 11:26:41 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-01 11:32:00 +0100
commit1ce03f4f341efd3a2543572c5a0816b65789b0b0 (patch)
tree7d26af73beeddd225e0c3e5b756307639566ec5f /Userland/Services/NotificationServer/NotificationServer.ipc
parenta5bbe3280d2a492f861cccb641b1b35b8b667b61 (diff)
downloadserenity-1ce03f4f341efd3a2543572c5a0816b65789b0b0.zip
LibIPC: Stop sending client ID to clients
The client ID is not useful to normal clients anymore, so stop telling everyone what their ID is.
Diffstat (limited to 'Userland/Services/NotificationServer/NotificationServer.ipc')
-rw-r--r--Userland/Services/NotificationServer/NotificationServer.ipc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/NotificationServer/NotificationServer.ipc b/Userland/Services/NotificationServer/NotificationServer.ipc
index e342ebf2d3..a4f7e64a6b 100644
--- a/Userland/Services/NotificationServer/NotificationServer.ipc
+++ b/Userland/Services/NotificationServer/NotificationServer.ipc
@@ -1,7 +1,7 @@
endpoint NotificationServer = 95
{
// Basic protocol
- Greet() => (i32 client_id)
+ Greet() => ()
ShowNotification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
}