linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] selftest:powerpc:dscr:fix compile error in dscr_sysfs_test
@ 2018-09-11  9:01 Mamatha Inamdar
  0 siblings, 0 replies; only message in thread
From: Mamatha Inamdar @ 2018-09-11  9:01 UTC (permalink / raw)
  To: linux-kernel

This patch is to fix the following compile error ocured when building
with gcc7:

[stderr] dscr_sysfs_test.c: In function ‘dscr_sysfs’:
[stderr] dscr_sysfs_test.c:63:20: error: ‘%s’ directive writing up to 255 bytes

Signed-off-by: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com>
---
 .../selftests/powerpc/dscr/dscr_sysfs_test.c       |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c b/tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c
index 1899bd8..72e3af0 100644
--- a/tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c
+++ b/tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c
@@ -62,7 +62,7 @@ static int check_all_cpu_dscr_defaults(unsigned long val)
 		if (!strstr(dp->d_name, "cpu"))
 			continue;
 
-		len = snprintf(file, LEN_MAX, "%s%s/dscr", CPU_PATH, dp->d_name);
+		len = snprintf(file, LEN_MAX, "%scpu%ld/dscr", CPU_PATH, val);
 		if (len >= LEN_MAX)
 			continue;
 		if (access(file, F_OK))


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-09-11  9:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-11  9:01 [PATCH] selftest:powerpc:dscr:fix compile error in dscr_sysfs_test Mamatha Inamdar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).