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 \
/* public */ \
uv_close_cb close_cb; \
void* data; \
/* read-only */ \
uv_loop_t* loop; \
uv_handle_type type; \
/* private */ \
uv_close_cb close_cb; \
void* handle_queue[2]; \
UV_HANDLE_PRIVATE_FIELDS \