From 7235f7f42b61c2b111174c3ee5ca72aac8815cd5 Mon Sep 17 00:00:00 2001
From: Ben Pfaff <blp@cs.stanford.edu>
Date: Tue, 8 Nov 2011 21:07:38 -0800
Subject: [PATCH] ONEWAY: Fix printf format specifier.

Reported-by: Jeremy Lavergne <jeremy@lavergne.gotdns.org>
---
 src/language/stats/oneway.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/language/stats/oneway.c b/src/language/stats/oneway.c
index 1c80c2ba98..49a34f2ed5 100644
--- a/src/language/stats/oneway.c
+++ b/src/language/stats/oneway.c
@@ -827,7 +827,7 @@ output_oneway (const struct oneway_spec *cmd, struct oneway_workspace *ws)
       if (ll_count (cl) != ws->actual_number_of_groups)
 	{
 	  msg (SW,
-	       _("In contrast list %zu, the number of coefficients (%d) does not equal the number of groups (%d). This contrast list will be ignored."),
+	       _("In contrast list %zu, the number of coefficients (%zu) does not equal the number of groups (%d). This contrast list will be ignored."),
 	       i, ll_count (cl), ws->actual_number_of_groups);
 
 	  ll_remove (&coeff_list->ll);
-- 
2.30.2