* [PATCH 12/12] xfsprogs: Drop a typedef in db/metadump.c
@ 2010-12-30 20:42 Alex Elder
0 siblings, 0 replies; only message in thread
From: Alex Elder @ 2010-12-30 20:42 UTC (permalink / raw)
To: xfs
Use struct name_ent rather than its typedef, and just drop the
typedef entirely.
Signed-off-by: Alex Elder <aelder@sgi.com>
---
db/metadump.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: b/db/metadump.c
===================================================================
--- a/db/metadump.c
+++ b/db/metadump.c
@@ -337,12 +337,12 @@ copy_free_cnt_btree(
/* filename and extended attribute obfuscation routines */
-typedef struct name_ent {
+struct name_ent {
struct name_ent *next;
xfs_dahash_t hash;
int namelen;
uchar_t name[1];
-} name_ent_t;
+};
#define NAME_TABLE_SIZE 4096
@@ -352,7 +352,7 @@ static void
nametable_clear(void)
{
int i;
- name_ent_t *ent;
+ struct name_ent *ent;
for (i = 0; i < NAME_TABLE_SIZE; i++) {
while ((ent = nametable[i])) {
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-12-30 20:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-30 20:42 [PATCH 12/12] xfsprogs: Drop a typedef in db/metadump.c Alex Elder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox