summaryrefslogtreecommitdiff
path: root/source4/heimdal
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-01-24 10:09:29 +0100
committerJeremy Allison <jra@samba.org>2014-01-24 13:42:38 -0800
commitc437eaa62521d3fd44e3958cf0c4c1b24dc9cd76 (patch)
tree4d8655f886c8e4e7debd6df05a0cc9a1d0a6af56 /source4/heimdal
parent13015a12ea32d09ad5fbec9b96f59f3813e8f1d8 (diff)
downloadsamba-c437eaa62521d3fd44e3958cf0c4c1b24dc9cd76.tar.gz
heimdal: Fix a format error on FreeBSD10
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source4/heimdal')
-rw-r--r--source4/heimdal/lib/roken/rkpty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/roken/rkpty.c b/source4/heimdal/lib/roken/rkpty.c
index f2c62f23f39..a7b782551cf 100644
--- a/source4/heimdal/lib/roken/rkpty.c
+++ b/source4/heimdal/lib/roken/rkpty.c
@@ -233,7 +233,7 @@ eval_parent(pid_t pid)
c->str, c->lineno);
else if (alarmset)
errx(1, "got a signal %d waiting for %s (line %u)",
- alarmset, c->str, c->lineno);
+ (int)alarmset, c->str, c->lineno);
if (sret <= 0)
errx(1, "end command while waiting for %s (line %u)",
c->str, c->lineno);