aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-06-12 00:33:13 +0200
committerLoïc Hoguin <[email protected]>2015-06-12 00:33:13 +0200
commit341f991d58fde702f68fa9d0076ad6dc2f942917 (patch)
tree794c3aa80e9b81b2cea56bf6f2b92cace2903af0 /src
parenta6f75aa3dcf3de4638d3f454b17bece8ef213bb9 (diff)
downloadcowboy-341f991d58fde702f68fa9d0076ad6dc2f942917.tar.gz
cowboy-341f991d58fde702f68fa9d0076ad6dc2f942917.tar.bz2
cowboy-341f991d58fde702f68fa9d0076ad6dc2f942917.zip
Fix compilation error due to previous commit
Ah, conference commits.
Diffstat (limited to 'src')
-rw-r--r--src/cowboy_http2.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_http2.erl b/src/cowboy_http2.erl
index e0fe30e..6018461 100644
--- a/src/cowboy_http2.erl
+++ b/src/cowboy_http2.erl
@@ -77,7 +77,7 @@
encode_state = cow_hpack:init() :: cow_hpack:state()
}).
--spec init(pid(), ranch:ref(), inet:socket(), module(), opts(), module()) -> ok.
+-spec init(pid(), ranch:ref(), inet:socket(), module(), cowboy:opts(), module()) -> ok.
init(Parent, Ref, Socket, Transport, Opts, Handler) ->
before_loop(#state{parent=Parent, ref=Ref, socket=Socket,
transport=Transport, opts=Opts, handler=Handler}, <<>>).