From: Joel Becker Date: Fri, 13 Jun 2008 05:39:18 +0000 (-0700) Subject: ocfs2: Don't snprintf() without a format. X-Git-Tag: v2.6.27-rc1~1036^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe9f387740ac7cb3b7c2fffa76807e997e6c6292;p=pandora-kernel.git ocfs2: Don't snprintf() without a format. Some system files are per-slot. Their names include the slot number. ocfs2_sprintf_system_inode_name() uses the system inode definitions to fill in the slot number with snprintf(). For global system files, there is no node number, and the name was printed as a format with no arguments. -Wformat-nonliteral and -Wformat-security don't like this. Instead, use a static "%s" format and the name as the argument. Signed-off-by: Joel Becker --- Reading git-diff-tree failed