diff options
author | Volker Lendecke <vl@samba.org> | 2013-01-27 17:24:31 +0100 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-01-28 10:08:00 +0100 |
commit | dd9ed7bef4040e2f87baa3bf7133675aca995980 (patch) | |
tree | 6e32055c22706534ab1af40351a56cc3224b48ee /source3 | |
parent | bb3238b46f0ffaf0bc8c0e16bdcc1cf5d2cad197 (diff) | |
download | samba-dd9ed7bef4040e2f87baa3bf7133675aca995980.tar.gz samba-dd9ed7bef4040e2f87baa3bf7133675aca995980.tar.xz samba-dd9ed7bef4040e2f87baa3bf7133675aca995980.zip |
smbcontrol: Fix the build with libunwind
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index ac13dc4e3be..8a690566e70 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -327,7 +327,7 @@ static int stack_trace_server(const struct server_id *id, void *priv) { if (id->vnn == get_my_vnn()) { - print_stack_trace(procid_to_pid(&id->pid), (int *)priv); + print_stack_trace(procid_to_pid(id), (int *)priv); } return 0; } |