lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250729120741.1928313-1-colin.i.king@gmail.com>
Date: Tue, 29 Jul 2025 13:07:41 +0100
From: Colin Ian King <colin.i.king@...il.com>
To: Matthew Wilcox <willy@...radead.org>,
	Al Viro <viro@...iv.linux.org.uk>
Cc: kernel-janitors@...r.kernel.org,
	linux-kernel@...r.kernel.org
Subject: [PATCH][next] ufs: Remove space before newline

There is an extraneous space before a newline in a UFSD message. Remove it
Also add spaces after , to clean up checkpatch warning

Signed-off-by: Colin Ian King <colin.i.king@...il.com>
---
 fs/ufs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ufs/inode.c b/fs/ufs/inode.c
index 8361c00e8fa6..3675e45372a3 100644
--- a/fs/ufs/inode.c
+++ b/fs/ufs/inode.c
@@ -55,7 +55,7 @@ static int ufs_block_to_path(struct inode *inode, sector_t i_block, unsigned off
 	int n = 0;
 
 
-	UFSD("ptrs=uspi->s_apb = %d,double_blocks=%ld \n",ptrs,double_blocks);
+	UFSD("ptrs=uspi->s_apb = %d,double_blocks=%ld\n", ptrs, double_blocks);
 	if (i_block < direct_blocks) {
 		offsets[n++] = i_block;
 	} else if ((i_block -= direct_blocks) < indirect_blocks) {
-- 
2.50.0


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ