Blob Blame History Raw
From f7219cf0e63496b8919779b5981c3d4150a0e2e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
Date: Tue, 3 Dec 2013 14:29:18 +0100
Subject: [PATCH] fix build with -Werror=format-security

---
 dasdcopy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dasdcopy.c b/dasdcopy.c
index e14195e..c7a25b3 100644
--- a/dasdcopy.c
+++ b/dasdcopy.c
@@ -660,7 +660,7 @@ int syntax (char *pgm)
 #endif
             ,(sizeof(off_t) > 4) ? _( "     -lfs              output ckd file will be a single file\n" ) : ( "" )
             );
-    printf (usage);
+    printf ("%s", usage);
     return -1;
 } /* end function syntax */
 
-- 
1.8.1.4