summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2024-02-27 21:15:01 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2024-02-27 21:16:58 +0100
commitbb49f95b7f1a6f0309d019e07c529a507a47f510 (patch)
tree46bea72c509fa9279f751cd358a1d189fb5f7e4e /src
parent3c6cdc5a53c4a5ec1aff417f2cbfaa9449004ee6 (diff)
cosmetic: ipa_proto.erl: Fix trailing whitespace
Diffstat (limited to 'src')
-rw-r--r--src/ipa_proto.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ipa_proto.erl b/src/ipa_proto.erl
index ceb024a..fcd594b 100644
--- a/src/ipa_proto.erl
+++ b/src/ipa_proto.erl
@@ -1,4 +1,4 @@
-% ip.access IPA multiplex protocol
+% ip.access IPA multiplex protocol
% (C) 2010,2012,2019 by Harald Welte <laforge@gnumonks.org>
% (C) 2010 by On-Waves
@@ -50,12 +50,12 @@
register_socket(Socket) ->
IpaPid = spawn(?MODULE, init_sock, [Socket, self()]),
% synchronously wait for init_sock to be done
- receive
+ receive
{ipa_init_sock_done, Socket} ->
% assign ownership of the socket to the new IPA handler process
gen_tcp:controlling_process(Socket, IpaPid),
{ok, IpaPid}
- after
+ after
?TIMEOUT ->
{error, timeout}
end.