Renamed error as error_code in spdylay_on_ctrl_not_send_callback prototype

This commit is contained in:
Tatsuhiro Tsujikawa 2012-05-11 23:33:46 +09:00
parent 93593a76ec
commit 42c0e3c758
1 changed files with 2 additions and 2 deletions

View File

@ -919,12 +919,12 @@ typedef void (*spdylay_on_ctrl_send_callback)
*
* Callback function invoked after the control frame |frame| of type
* |type| is not sent because of the error. The error is indicated by
* the |error|, which is one of the values defined in
* the |error_code|, which is one of the values defined in
* :type:`spdylay_error`.
*/
typedef void (*spdylay_on_ctrl_not_send_callback)
(spdylay_session *session, spdylay_frame_type type, spdylay_frame *frame,
int error, void *user_data);
int error_code, void *user_data);
/**
* @functypedef