diff options
-rw-r--r-- | source4/include/nameserv.h | 4 | ||||
-rw-r--r-- | source4/lib/registry/common/reg_objects.c | 2 | ||||
-rw-r--r-- | source4/libcli/raw/clioplock.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/source4/include/nameserv.h b/source4/include/nameserv.h index c8bb670feb..8b0fa835b9 100644 --- a/source4/include/nameserv.h +++ b/source4/include/nameserv.h @@ -341,7 +341,7 @@ typedef void (*fail_function)(struct subnet_record *, struct response_record *, typedef void (*register_name_success_function)( struct subnet_record *, struct userdata_struct *, struct nmb_name *, - uint16, + uint16_t, int, struct in_addr); typedef void (*register_name_fail_function)( struct subnet_record *, @@ -359,7 +359,7 @@ typedef void (*release_name_fail_function)( struct subnet_record *, typedef void (*refresh_name_success_function)( struct subnet_record *, struct userdata_struct *, struct nmb_name *, - uint16, + uint16_t, int, struct in_addr); typedef void (*refresh_name_fail_function)( struct subnet_record *, diff --git a/source4/lib/registry/common/reg_objects.c b/source4/lib/registry/common/reg_objects.c index be15108f4d..d042c74e47 100644 --- a/source4/lib/registry/common/reg_objects.c +++ b/source4/lib/registry/common/reg_objects.c @@ -61,7 +61,7 @@ void reg_val_free( REG_VAL *val ) /********************************************************************** *********************************************************************/ -uint8* reg_val_data_blk( REG_VAL *val ) +uint8_t * reg_val_data_blk( REG_VAL *val ) { return val->data_blk; } diff --git a/source4/libcli/raw/clioplock.c b/source4/libcli/raw/clioplock.c index eacfd411a0..0cd6adb41f 100644 --- a/source4/libcli/raw/clioplock.c +++ b/source4/libcli/raw/clioplock.c @@ -50,7 +50,7 @@ BOOL cli_oplock_ack(struct cli_tree *tree, uint16_t fnum, uint16_t ack_level) set the oplock handler for a connection ****************************************************************************/ void cli_oplock_handler(struct cli_transport *transport, - BOOL (*handler)(struct cli_transport *, uint16, uint16, uint8, void *), + BOOL (*handler)(struct cli_transport *, uint16_t, uint16_t, uint8_t, void *), void *private) { transport->oplock.handler = handler; |