From 42c0e3c75839360f600273f1358e5be33f7fc442 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Fri, 11 May 2012 23:33:46 +0900 Subject: [PATCH] Renamed error as error_code in spdylay_on_ctrl_not_send_callback prototype --- lib/includes/spdylay/spdylay.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/includes/spdylay/spdylay.h b/lib/includes/spdylay/spdylay.h index 1342144..742dd44 100644 --- a/lib/includes/spdylay/spdylay.h +++ b/lib/includes/spdylay/spdylay.h @@ -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