diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-12 17:12:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-12 18:49:24 +0200 |
commit | cba48803014f8248b7f29747204bc757cdd5d63d (patch) | |
tree | d549286295c80790a7663166fcb77431ea161563 /Services/LaunchServer | |
parent | 1383cd23bcbd8cee3a39ff71b9fb3e427e9b61da (diff) | |
download | serenity-cba48803014f8248b7f29747204bc757cdd5d63d.zip |
LaunchServer: Remove tab characters in LaunchServer.ipc
Diffstat (limited to 'Services/LaunchServer')
-rw-r--r-- | Services/LaunchServer/LaunchServer.ipc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Services/LaunchServer/LaunchServer.ipc b/Services/LaunchServer/LaunchServer.ipc index 06e57b7b1a..dd34ae473d 100644 --- a/Services/LaunchServer/LaunchServer.ipc +++ b/Services/LaunchServer/LaunchServer.ipc @@ -1,6 +1,5 @@ endpoint LaunchServer = 101 { - Greet() => (i32 client_id) - - OpenUrl(String url) => (bool response) + Greet() => (i32 client_id) + OpenUrl(String url) => (bool response) } |