diff options
Diffstat (limited to 'src/catlfish_app.erl')
-rw-r--r-- | src/catlfish_app.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/catlfish_app.erl b/src/catlfish_app.erl index f4b67ad..9c9bdad 100644 --- a/src/catlfish_app.erl +++ b/src/catlfish_app.erl @@ -19,7 +19,7 @@ dummy() -> start(_StartType, _StartArgs) -> io:format("starting catlfish~n", []), InetsResult = inets:start(httpd, [{proplist_file, "httpd_props.conf"}]), - io:format("catlfish: tried to start inets service:~p~n", [InetsResult]), + io:format("catlfish: tried to start inets service: ~p~n", [InetsResult]), Pid = spawn(fun () -> dummy() end), |