From 596661cb3fbe51611a0e7c5121ba5ebfd56dc29d Mon Sep 17 00:00:00 2001 From: Mario Danic Date: Sat, 9 Sep 2006 13:26:18 +0000 Subject: [PATCH] Fixed two style glitches --- trunk/libisofs/volume.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/trunk/libisofs/volume.c b/trunk/libisofs/volume.c index 0d4325f9..4ed756bf 100755 --- a/trunk/libisofs/volume.c +++ b/trunk/libisofs/volume.c @@ -71,7 +71,8 @@ iso_volume_new_with_root(const char *volume_id, return volume; } -void iso_volume_free(struct iso_volume *volume) +void +iso_volume_free(struct iso_volume *volume) { /* Only free if no references are in use. */ if (--volume->refcount < 1) { @@ -85,7 +86,8 @@ void iso_volume_free(struct iso_volume *volume) } } -struct iso_tree_node *iso_volume_get_root(const struct iso_volume *volume) +struct iso_tree_node * +iso_volume_get_root(const struct iso_volume *volume) { return volume->root; }