bk://cifs.bkbits.net/linux-2.5cifs stevef@smfhome.smfdom|ChangeSet|20040819134246|52053 stevef # This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2004/08/19 08:42:46-05:00 stevef@smfhome.smfdom # CIFS: fix 64 bit compiler warning in cifs debug code # # Signed-off-by: Steve French (sfrench@us.ibm.com) # # fs/cifs/cifsproto.h # 2004/08/19 08:42:38-05:00 stevef@smfhome.smfdom +1 -1 # fix 64 bit compiler warning in debug code # diff -Nru a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h --- a/fs/cifs/cifsproto.h 2004-08-20 02:10:09 -07:00 +++ b/fs/cifs/cifsproto.h 2004-08-20 02:10:09 -07:00 @@ -37,7 +37,7 @@ extern unsigned int _GetXid(void); extern void _FreeXid(unsigned int); #define GetXid() (int)_GetXid(); cFYI(1,("CIFS VFS: in %s as Xid: %d with uid: %d",__FUNCTION__, xid,current->fsuid)); -#define FreeXid(curr_xid) {_FreeXid(curr_xid); cFYI(1,("CIFS VFS: leaving %s (xid = %d) rc = %d",__FUNCTION__,curr_xid,rc));} +#define FreeXid(curr_xid) {_FreeXid(curr_xid); cFYI(1,("CIFS VFS: leaving %s (xid = %d) rc = %d",__FUNCTION__,curr_xid,(int)rc));} extern char *build_path_from_dentry(struct dentry *); extern char *build_wildcard_path_from_dentry(struct dentry *direntry); extern void renew_parental_timestamps(struct dentry *direntry);