From: Kirk True When SMBFS_DEBUG_VERBOSE is #define-d, the compile breaks: fs/smbfs/inode.c:217: error: aggregate value used where an integer was expected This is a simple matter of using the .tv_sec attribute of struct time_spec. Signed-off-by: Kirk True Signed-off-by: Andrew Morton --- fs/smbfs/inode.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/smbfs/inode.c~smbfs-fix-debug-logging-only-compilation-error fs/smbfs/inode.c --- devel/fs/smbfs/inode.c~smbfs-fix-debug-logging-only-compilation-error 2006-03-04 22:04:32.000000000 -0800 +++ devel-akpm/fs/smbfs/inode.c 2006-03-04 22:04:32.000000000 -0800 @@ -217,7 +217,7 @@ smb_set_inode_attr(struct inode *inode, if (inode->i_mtime.tv_sec != last_time || inode->i_size != last_sz) { VERBOSE("%ld changed, old=%ld, new=%ld, oz=%ld, nz=%ld\n", inode->i_ino, - (long) last_time, (long) inode->i_mtime, + (long) last_time, (long) inode->i_mtime.tv_sec, (long) last_sz, (long) inode->i_size); if (!S_ISDIR(inode->i_mode)) _