From: hanwen <hanwen>
Date: Thu, 16 Mar 2006 13:47:10 +0000 (+0000)
Subject: (do_chroot_jail): printf format fix.
X-Git-Tag: release/2.8.2~80
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=62e9eafbddbe71f7f6a4b2af29e83c7cc9a59d71;p=lilypond.git

(do_chroot_jail): printf format fix.
---

diff --git a/ChangeLog b/ChangeLog
index 59e034af07..fc2e6fccb8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-03-16  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+	* lily/main.cc (do_chroot_jail): printf format fix.
+
 	* lily/tie-formatting-problem.cc (generate_configuration):
 	multiply y-shift for dot with direction.
  
diff --git a/THANKS b/THANKS
index 41cc80905a..616b1e9fa8 100644
--- a/THANKS
+++ b/THANKS
@@ -87,6 +87,7 @@ Matevž Jekovec
 Michael Kiermaier
 Michael Welsh Duggan
 Milan Zamazal
+Nicolas Mayencourt
 Orm Finnendahl
 Patrick K Welton
 Paul Scott
diff --git a/lily/main.cc b/lily/main.cc
index 6f985ae253..67e22fb04e 100644
--- a/lily/main.cc
+++ b/lily/main.cc
@@ -303,7 +303,7 @@ do_chroot_jail ()
   vector<string> components = string_split (jail_spec, ',');
   if (components.size () != JAIL_MAX)
     {
-      error (_f ("expected %d arguments with jail, found: %d", JAIL_MAX,
+      error (_f ("expected %d arguments with jail, found: %u", JAIL_MAX,
 		 components.size ()));
       exit (2);
     }