From: Frederik Himpe <fhimpe@telenet.be>
Subject:  numctl build fix with -Werror=format-security

On Mandriva, this patch is needed to build numa 2.0.3-rc3 with the -
Werror=format-security gcc CFLAG.

Can you check this patch and include it if it's correct?

Frederik Himpe
----

diff -Naur numactl-2.0.2/migspeed.c numactl-2.0.2-fix-fmt-errors/migspeed.c
--- numactl-2.0.2/migspeed.c	2008-08-05 16:36:58.000000000 +0200
+++ numactl-2.0.2-fix-fmt-errors/migspeed.c	2009-05-10 09:50:03.000000000 +0200
@@ -55,7 +55,7 @@
 			break;
 		if (!strstr(buffer, "bind"))
 			continue ;
-		printf(buffer);
+		printf("%s", buffer);
 
 	}
 	fclose(f);
