summaryrefslogtreecommitdiffstats
path: root/source/lib/talloc.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-03-14 01:53:04 +0000
committerTim Potter <tpot@samba.org>2002-03-14 01:53:04 +0000
commita3cea5e9ae3b53ecbc45e61a39cbce0ca1b916aa (patch)
tree53be81f17f3c1d228cb6125d9f16183d31196baf /source/lib/talloc.c
parentd7efc5dd3dd712e7138b5c79eea9756125757175 (diff)
downloadsamba-a3cea5e9ae3b53ecbc45e61a39cbce0ca1b916aa.tar.gz
samba-a3cea5e9ae3b53ecbc45e61a39cbce0ca1b916aa.tar.xz
samba-a3cea5e9ae3b53ecbc45e61a39cbce0ca1b916aa.zip
getpid() -> sys_getpid()
Diffstat (limited to 'source/lib/talloc.c')
-rw-r--r--source/lib/talloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/talloc.c b/source/lib/talloc.c
index 330780a035d..543165c8819 100644
--- a/source/lib/talloc.c
+++ b/source/lib/talloc.c
@@ -364,7 +364,7 @@ char *talloc_describe_all(TALLOC_CTX *rt)
char *s;
s = talloc_asprintf(rt, "global talloc allocations in pid: %u\n",
- (unsigned) getpid());
+ (unsigned) sys_getpid());
s = talloc_asprintf_append(rt, s, "%-40s %8s %8s\n",
"name", "chunks", "bytes");
s = talloc_asprintf_append(rt, s, "%-40s %8s %8s\n",