Author: rhuijben
Date: Tue Nov 17 12:53:01 2015
New Revision: 1714775
URL: http://svn.apache.org/viewvc?rev=1714775&view=rev
Log:
* protocols/http2_protocol.c
(serf_http2__stream_get): Use bool for arguments.
* protocols/http2_protocol.h
(serf_http2__stream_get): Use bool for arguments.
Modified:
serf/trunk/protocols/http2_protocol.c
serf/trunk/protocols/http2_protocol.h
Modified: serf/trunk/protocols/http2_protocol.c
URL:
http://svn.apache.org/viewvc/serf/trunk/protocols/http2_protocol.c?rev=1714775&r1=1714774&r2=1714775&view=diff
==============================================================================
--- serf/trunk/protocols/http2_protocol.c (original)
+++ serf/trunk/protocols/http2_protocol.c Tue Nov 17 12:53:01 2015
@@ -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;
Modified: serf/trunk/protocols/http2_protocol.h
URL:
http://svn.apache.org/viewvc/serf/trunk/protocols/http2_protocol.h?rev=1714775&r1=1714774&r2=1714775&view=diff
==============================================================================
--- serf/trunk/protocols/http2_protocol.h (original)
+++ serf/trunk/protocols/http2_protocol.h Tue Nov 17 12:53:01 2015
@@ -189,8 +189,8 @@ serf_http2__stream_cleanup(serf_http2_st
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