summaryrefslogtreecommitdiff
path: root/source3/tdb/tdbback.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-07-30 10:42:11 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:38:25 -0500
commit5a5deade6e4634aad561139f39337c9a960c0b80 (patch)
tree9907286b6e90ac4dfbbdf1194c08c99cd07701e7 /source3/tdb/tdbback.c
parent2c6030415e0b1f421ea6e85fe6ffe7389ee7a941 (diff)
downloadsamba-5a5deade6e4634aad561139f39337c9a960c0b80.tar.gz
samba-5a5deade6e4634aad561139f39337c9a960c0b80.tar.bz2
samba-5a5deade6e4634aad561139f39337c9a960c0b80.zip
r17315: Make talloc and tdb C++-warning-free. Would this also be interesting in talloc
and tdb "upstream"? Volker (This used to be commit 68c43191c8aa4faa9801e0ab084a216ceaf4379d)
Diffstat (limited to 'source3/tdb/tdbback.c')
-rw-r--r--source3/tdb/tdbback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/tdb/tdbback.c b/source3/tdb/tdbback.c
index c337924d6c..4698e6016b 100644
--- a/source3/tdb/tdbback.c
+++ b/source3/tdb/tdbback.c
@@ -63,7 +63,7 @@ char *add_suffix(const char *name, const char *suffix)
{
char *ret;
int len = strlen(name) + strlen(suffix) + 1;
- ret = malloc(len);
+ ret = (char *)malloc(len);
if (!ret) {
fprintf(stderr,"Out of memory!\n");
exit(1);