mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	9p: fix format warning
This patch fixes a format warning which appears on 64-bit builds. Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
This commit is contained in:
		
							parent
							
								
									0b15a3a528
								
							
						
					
					
						commit
						ea2e7996fc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -178,7 +178,7 @@ v9fs_file_read(struct file *filp, char __user *udata, size_t count, | |||
| 	int ret; | ||||
| 	struct p9_fid *fid; | ||||
| 
 | ||||
| 	P9_DPRINTK(P9_DEBUG_VFS, "count %d offset %lld\n", count, *offset); | ||||
| 	P9_DPRINTK(P9_DEBUG_VFS, "count %zu offset %lld\n", count, *offset); | ||||
| 	fid = filp->private_data; | ||||
| 
 | ||||
| 	if (count > (fid->clnt->msize - P9_IOHDRSZ)) | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Eric Van Hensbergen
						Eric Van Hensbergen