You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
254static int handle_incoming_raw_read(qdr_tcp_connection_t *conn, qd_buffer_list_t *buffers)
255{
256 pn_raw_buffer_t raw_buffer;
257 if (read_window_full(conn) || !pn_raw_connection_take_read_buffers(conn->pn_raw_conn, &raw_buffer, 1)) {
258 return 0;
259 }
260 int result = raw_buffer.size;
CID 379175 (#1 of 1): Invalid type in argument to printf format specifier (PRINTF_ARGS)invalid_type: Argument result to format specifier %zu was expected to have type size_t(unsigned long) but has type int. [show details]
261 qd_log(tcp_adaptor->log_source, QD_LOG_DEBUG,
262 "[C%"PRIu64"] pn_raw_connection_take_read_buffers() took buffer with %zu bytes",
263 conn->conn_id, result);
264
614 conn->previous_stream_data = 0;
615 }
616
617 conn->outgoing_buff_idx += used;
CID 379192 (#2 of 2): Invalid type in argument to printf format specifier (PRINTF_ARGS)invalid_type: Argument used to format specifier %i was expected to have type int but has type unsigned long. [show details]
618 qd_log(tcp_adaptor->log_source, QD_LOG_DEBUG,
619 "[C%"PRIu64"] Copied %i buffers, %i remain", conn->conn_id, used, conn->outgoing_buff_count - conn->outgoing_buff_idx);
620 }
621 return result;
The text was updated successfully, but these errors were encountered:
254static int handle_incoming_raw_read(qdr_tcp_connection_t *conn, qd_buffer_list_t *buffers)
255{
256 pn_raw_buffer_t raw_buffer;
257 if (read_window_full(conn) || !pn_raw_connection_take_read_buffers(conn->pn_raw_conn, &raw_buffer, 1)) {
258 return 0;
259 }
260 int result = raw_buffer.size;
CID 379175 (#1 of 1): Invalid type in argument to printf format specifier (PRINTF_ARGS)invalid_type: Argument result to format specifier %zu was expected to have type size_t(unsigned long) but has type int. [show details]
261 qd_log(tcp_adaptor->log_source, QD_LOG_DEBUG,
262 "[C%"PRIu64"] pn_raw_connection_take_read_buffers() took buffer with %zu bytes",
263 conn->conn_id, result);
264
614 conn->previous_stream_data = 0;
615 }
616
617 conn->outgoing_buff_idx += used;
CID 379192 (#2 of 2): Invalid type in argument to printf format specifier (PRINTF_ARGS)invalid_type: Argument used to format specifier %i was expected to have type int but has type unsigned long. [show details]
618 qd_log(tcp_adaptor->log_source, QD_LOG_DEBUG,
619 "[C%"PRIu64"] Copied %i buffers, %i remain", conn->conn_id, used, conn->outgoing_buff_count - conn->outgoing_buff_idx);
620 }
621 return result;
The text was updated successfully, but these errors were encountered: