From ba26fa550208e194982bf21725aeb8283410c7a4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 24 Jan 2014 10:09:29 +0100 Subject: [PATCH] heimdal: Fix a format error on FreeBSD10 Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- lib/roken/rkpty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/rkpty.c b/lib/roken/rkpty.c index b2f021e42..619b7b639 100644 --- a/lib/roken/rkpty.c +++ b/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);