summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-05-26 01:13:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:18 -0500
commit47864891ffd6309764fdc3a5227ec2e83c6f7107 (patch)
tree3e961452b1fe9543a8cf8d8456eab1270d21402d
parente754760d2346cb868182b479745ee60630188298 (diff)
downloadsamba-47864891ffd6309764fdc3a5227ec2e83c6f7107.tar.gz
samba-47864891ffd6309764fdc3a5227ec2e83c6f7107.tar.bz2
samba-47864891ffd6309764fdc3a5227ec2e83c6f7107.zip
r893: a few more _t conversions
(This used to be commit 66eb46dbb1486c5916194bf6b303cf16373a272a)
-rw-r--r--source4/include/nameserv.h4
-rw-r--r--source4/lib/registry/common/reg_objects.c2
-rw-r--r--source4/libcli/raw/clioplock.c2
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;