1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

o make ios the first argument to pv_create

This commit is contained in:
Joe Thornber 2001-10-12 10:52:32 +00:00
parent 48c4f95d4d
commit 2cb6249206
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include <string.h>
struct physical_volume *pv_create(const char *name, struct io_space *ios)
struct physical_volume *pv_create(struct io_space *ios, const char *name)
{
struct physical_volume *pv = pool_alloc(ios->mem, sizeof(*pv));

View File

@ -193,7 +193,7 @@ struct io_space {
/*
* Utility functions
*/
struct physical_volume *pv_create(const char *name, struct io_space *ios);
struct physical_volume *pv_create(struct io_space *ios, const char *name);