[Ocfs2-tools-commits] zab commits r556 - in trunk/debugfs.ocfs2: . include

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Jan 17 16:19:26 CST 2005


Author: zab
Date: 2005-01-17 16:19:24 -0600 (Mon, 17 Jan 2005)
New Revision: 556

Modified:
   trunk/debugfs.ocfs2/commands.c
   trunk/debugfs.ocfs2/include/dump.h
Log:
o kill compiler warnings by declaring dump_fast_symlink() 


Modified: trunk/debugfs.ocfs2/commands.c
===================================================================
--- trunk/debugfs.ocfs2/commands.c	2005-01-13 23:36:37 UTC (rev 555)
+++ trunk/debugfs.ocfs2/commands.c	2005-01-17 22:19:24 UTC (rev 556)
@@ -698,7 +698,7 @@
 	else if ((inode->i_flags & OCFS2_CHAIN_FL))
 		ret = traverse_chains(gbls.fs, &(inode->id2.i_chain), out);
 	else if (S_ISLNK(inode->i_mode) && !inode->i_clusters)
-		ret = dump_fast_symlink(out, inode->id2.i_symlink);
+		dump_fast_symlink(out, inode->id2.i_symlink);
 	else
 		ret = traverse_extents(gbls.fs, &(inode->id2.i_list), out);
 

Modified: trunk/debugfs.ocfs2/include/dump.h
===================================================================
--- trunk/debugfs.ocfs2/include/dump.h	2005-01-13 23:36:37 UTC (rev 555)
+++ trunk/debugfs.ocfs2/include/dump.h	2005-01-17 22:19:24 UTC (rev 556)
@@ -48,5 +48,6 @@
 void dump_jbd_metadata (FILE *out, int type, char *buf, __u64 blknum);
 void dump_jbd_unknown (FILE *out, __u64 start, __u64 end);
 void dump_slots (FILE *out, char *buf, uint32_t len);
+void dump_fast_symlink (FILE *out, char *link);
 
 #endif		/* __DUMP_H__ */



More information about the Ocfs2-tools-commits mailing list