Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b73f3d0e authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/hfsplus: fix pr_foo() and hfs_dbg formats

parent ffbc0671
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -436,8 +436,7 @@ int hfsplus_file_extend(struct inode *inode, bool zeroout)
	if (sbi->alloc_file->i_size * 8 <
	    sbi->total_blocks - sbi->free_blocks + 8) {
		/* extend alloc file */
		pr_err("extend alloc file! "
				"(%llu,%u,%u)\n",
		pr_err("extend alloc file! (%llu,%u,%u)\n",
		       sbi->alloc_file->i_size * 8,
		       sbi->total_blocks, sbi->free_blocks);
		return -ENOSPC;
+2 −1
Original line number Diff line number Diff line
@@ -131,6 +131,7 @@ static int hfsplus_system_write_inode(struct inode *inode)
	hfsplus_inode_write_fork(inode, fork);
	if (tree) {
		int err = hfs_btree_write(tree);

		if (err) {
			pr_err("b-tree write err: %d, ino %lu\n",
			       err, inode->i_ino);
+1 −1

File changed.

Contains only whitespace changes.