public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] keys/keyctl: Fix typo in string
@ 2022-07-04  2:52 Li zeming
  2022-07-11  0:10 ` Jarkko Sakkinen
  0 siblings, 1 reply; 3+ messages in thread
From: Li zeming @ 2022-07-04  2:52 UTC (permalink / raw)
  To: dhowells, jarkko, jmorris, serge
  Cc: keyrings, linux-security-module, linux-kernel, kernel, Li zeming

Remove the repeated ',' from string

Signed-off-by: Li zeming <zeming@nfschina.com>
---
 security/keys/keyctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c
index 96a92a645216..2be09642dd13 100644
--- a/security/keys/keyctl.c
+++ b/security/keys/keyctl.c
@@ -1175,7 +1175,7 @@ static long keyctl_instantiate_key_common(key_serial_t id,
 	void *payload;
 	long ret;
 
-	kenter("%d,,%zu,%d", id, plen, ringid);
+	kenter("%d,%zu,%d", id, plen, ringid);
 
 	if (!plen)
 		from = NULL;
-- 
2.18.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-28 10:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-04  2:52 [PATCH] keys/keyctl: Fix typo in string Li zeming
2022-07-11  0:10 ` Jarkko Sakkinen
2022-07-28 10:13   ` David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox