Browse Source

Fix a dialyzer warning

Loïc Hoguin 13 years ago
parent
commit
ce7084aa07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cowboy_app.erl

+ 1 - 1
src/cowboy_app.erl

@@ -46,7 +46,7 @@ profile_output() ->
 consider_profiling() ->
 consider_profiling() ->
 	case application:get_env(profile) of
 	case application:get_env(profile) of
 		{ok, true} ->
 		{ok, true} ->
-			eprof:start(),
+			{ok, _Pid} = eprof:start(),
 			eprof:start_profiling([self()]);
 			eprof:start_profiling([self()]);
 		_ ->
 		_ ->
 			not_profiling
 			not_profiling