Fixed two style glitches

This commit is contained in:
Mario Danic 2006-09-09 13:26:18 +00:00
parent da5dab7ea4
commit aa1e7f96eb
1 changed files with 4 additions and 2 deletions

View File

@ -71,7 +71,8 @@ iso_volume_new_with_root(const char *volume_id,
return volume; 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. */ /* Only free if no references are in use. */
if (--volume->refcount < 1) { 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; return volume->root;
} }