Skip to content

Commit

Permalink
* protocols/http2_protocol.c
Browse files Browse the repository at this point in the history
  (serf_http2__stream_get): Use bool for arguments.

* protocols/http2_protocol.h
  (serf_http2__stream_get): Use bool for arguments.


git-svn-id: https://svn.apache.org/repos/asf/serf/trunk@1714775 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
rhuijben committed Nov 17, 2015
1 parent ae425b5 commit fe37005
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions protocols/http2_protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -1880,8 +1880,8 @@ move_to_head(serf_http2_stream_t *stream)
serf_http2_stream_t *
serf_http2__stream_get(serf_http2_protocol_t *h2,
apr_int32_t streamid,
int create_for_remote,
int move_first)
bool create_for_remote,
bool move_first)
{
serf_http2_stream_t *stream;

Expand Down
4 changes: 2 additions & 2 deletions protocols/http2_protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ serf_http2__stream_cleanup(serf_http2_stream_t *stream);
serf_http2_stream_t *
serf_http2__stream_get(serf_http2_protocol_t *h2,
apr_int32_t streamid,
int create_for_remote,
int move_first);
bool create_for_remote,
bool move_first);

/* Sets up STREAM to handle the next request from CONN */
apr_status_t
Expand Down

0 comments on commit fe37005

Please sign in to comment.