1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-05 13:18:20 +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 82f6cda966
commit 32d37d00cb
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include <string.h> #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)); struct physical_volume *pv = pool_alloc(ios->mem, sizeof(*pv));

View File

@ -193,7 +193,7 @@ struct io_space {
/* /*
* Utility functions * 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);