aboutsummaryrefslogtreecommitdiffstats
path: root/drv_SamsungSPF.c
diff options
context:
space:
mode:
authorjmccrohan <jmccrohan@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2012-05-19 12:46:24 +0000
committerjmccrohan <jmccrohan@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2012-05-19 12:46:24 +0000
commit0070c296459dd3318b99125f803dc793fb8d72e7 (patch)
tree92526cfaaa236c9c42bd5e4a1083b2144ab06ee4 /drv_SamsungSPF.c
parentb0fd4a338357d019583624a1b346c3a7cd798f8f (diff)
downloadlcd4linux-0070c296459dd3318b99125f803dc793fb8d72e7.tar.gz
Mitigate format string exploits
error: format not a string literal and no format arguments [-Werror=format-security] Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com> git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1189 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_SamsungSPF.c')
-rw-r--r--drv_SamsungSPF.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drv_SamsungSPF.c b/drv_SamsungSPF.c
index 4e548b3..69f07cf 100644
--- a/drv_SamsungSPF.c
+++ b/drv_SamsungSPF.c
@@ -388,7 +388,7 @@ int drv_SamsungSPF_list(void)
printf("SamsungSPF driver, supported models [");
for (i = 0; i < numFrames; i++) {
- printf(spfDevices[i].type);
+ printf("%s", spfDevices[i].type);
if (i < numFrames - 1)
printf(", ");
}