From aa1e7f96ebc2f1a98ad0320b71c0b9f3e61c7ed8 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 --- libisofs/volume.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libisofs/volume.c b/libisofs/volume.c index 0d4325f..4ed756b 100755 --- a/libisofs/volume.c +++ b/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; }