include: mark close_cb field as private

This commit is contained in:
Saúl Ibarra Corretgé 2014-02-11 23:56:50 +01:00
parent b738d315fb
commit c8e4db6e00

View File

@ -499,12 +499,12 @@ struct uv_shutdown_s {
#define UV_HANDLE_FIELDS \ #define UV_HANDLE_FIELDS \
/* public */ \ /* public */ \
uv_close_cb close_cb; \
void* data; \ void* data; \
/* read-only */ \ /* read-only */ \
uv_loop_t* loop; \ uv_loop_t* loop; \
uv_handle_type type; \ uv_handle_type type; \
/* private */ \ /* private */ \
uv_close_cb close_cb; \
void* handle_queue[2]; \ void* handle_queue[2]; \
UV_HANDLE_PRIVATE_FIELDS \ UV_HANDLE_PRIVATE_FIELDS \