Browse Source

Fix compilation error due to previous commit

Ah, conference commits.
Loïc Hoguin 10 years ago
parent
commit
341f991d58
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/cowboy_http2.erl

+ 1 - 1
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}, <<>>).