Tiny fix in c++ code.
Showing
2 changed files
with
1 additions
and
2 deletions
... | @@ -31,7 +31,6 @@ | ... | @@ -31,7 +31,6 @@ |
31 | extern "C" { | 31 | extern "C" { |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | typedef enum mu_cfg_node_type mu_cfg_node_type_t; | ||
35 | typedef struct mu_cfg_node mu_cfg_node_t; | 34 | typedef struct mu_cfg_node mu_cfg_node_t; |
36 | typedef struct mu_cfg_tree mu_cfg_tree_t; | 35 | typedef struct mu_cfg_tree mu_cfg_tree_t; |
37 | 36 | ... | ... |
... | @@ -205,7 +205,7 @@ Pop3 :: rset () | ... | @@ -205,7 +205,7 @@ Pop3 :: rset () |
205 | } | 205 | } |
206 | 206 | ||
207 | void | 207 | void |
208 | Pop3 :: stat (unsigned int* count, mu_off_t* octets) | 208 | Pop3 :: stat (size_t* count, mu_off_t* octets) |
209 | { | 209 | { |
210 | int status = mu_pop3_stat (pop3, count, octets); | 210 | int status = mu_pop3_stat (pop3, count, octets); |
211 | if (status) | 211 | if (status) | ... | ... |
-
Please register or sign in to post a comment