summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-06-07 07:53:33 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:11 -0500
commita8ec53f022ff66053231818d4a60568675079ede (patch)
tree3025e6a6df1e40da4ae4256c44417b2020050b80
parentc592b562fa793c9fb3bd0d84074d4ffaa8f63b64 (diff)
downloadsamba-a8ec53f022ff66053231818d4a60568675079ede.tar.gz
r23376: More warnings
-rw-r--r--source/librpc/tools/ndrdump.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source/librpc/tools/ndrdump.c b/source/librpc/tools/ndrdump.c
index 23cfebcb9c3..81f6e958e5d 100644
--- a/source/librpc/tools/ndrdump.c
+++ b/source/librpc/tools/ndrdump.c
@@ -91,7 +91,7 @@ static char *stdin_load(TALLOC_CTX *mem_ctx, size_t *size)
result = (char *) talloc_realloc(
mem_ctx, result, char *, total_len + num_read);
} else {
- result = talloc_size(mem_ctx, num_read);
+ result = (char *) talloc_size(mem_ctx, num_read);
}
memcpy(result + total_len, buf, num_read);
@@ -105,7 +105,7 @@ static char *stdin_load(TALLOC_CTX *mem_ctx, size_t *size)
return result;
}
-const struct dcerpc_interface_table *load_iface_from_plugin(const char *plugin, const char *pipe_name)
+static const struct dcerpc_interface_table *load_iface_from_plugin(const char *plugin, const char *pipe_name)
{
const struct dcerpc_interface_table *p;
void *handle;
@@ -118,7 +118,7 @@ const struct dcerpc_interface_table *load_iface_from_plugin(const char *plugin,
}
symbol = talloc_asprintf(NULL, "dcerpc_table_%s", pipe_name);
- p = dlsym(handle, symbol);
+ p = (const struct dcerpc_interface_table *)dlsym(handle, symbol);
if (!p) {
printf("%s: Unable to find DCE/RPC interface table for '%s': %s\n", plugin, pipe_name, dlerror());
@@ -403,7 +403,9 @@ const struct dcerpc_interface_table *load_iface_from_plugin(const char *plugin,
f->ndr_print(ndr_v_print, function, flags, v_st);
if (blob.length != v_blob.length) {
- printf("WARNING! orig bytes:%u validated pushed bytes:%u\n", blob.length, v_blob.length);
+ printf("WARNING! orig bytes:%u validated pushed "
+ "bytes:%u\n", (unsigned int)blob.length,
+ (unsigned int)v_blob.length);
}
if (ndr_pull->offset != ndr_v_pull->offset) {