Author: Pierre Chifflier
Description: Fix build error with -Werror=format-security hardening flag.

diff -ruN bash-4.1.orig/print_cmd.c bash-4.1/print_cmd.c
--- a/bash/print_cmd.c	2009-09-16 21:32:26.000000000 +0200
+++ b/bash/print_cmd.c	2011-09-16 11:38:40.000000000 +0200
@@ -1374,7 +1374,7 @@
   for (i = 0; amount > 0; amount--)
     indentation_string[i++] = ' ';
   indentation_string[i] = '\0';
-  cprintf (indentation_string);
+  cprintf ("%s", indentation_string);
 }
 
 static void
