mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 06:35:24 +00:00
esx: Same order of arguments in definition and declaration
The order of arguments were not the same in the definition and declaration. All callers use the same order as the definition, so there is no bug, but change the function declaration to match the implementation to avoid confusion. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
58f549d4fa
commit
d9254cb0f0
@ -204,8 +204,8 @@ struct _esxVI_Context {
|
||||
|
||||
int esxVI_Context_Alloc(esxVI_Context **ctx);
|
||||
void esxVI_Context_Free(esxVI_Context **ctx);
|
||||
int esxVI_Context_Connect(esxVI_Context *ctx, const char *ipAddress,
|
||||
const char *url, const char *username,
|
||||
int esxVI_Context_Connect(esxVI_Context *ctx, const char *url,
|
||||
const char *ipAddress, const char *username,
|
||||
const char *password, esxUtil_ParsedUri *parsedUri);
|
||||
int esxVI_Context_LookupManagedObjects(esxVI_Context *ctx);
|
||||
int esxVI_Context_LookupManagedObjectsByPath(esxVI_Context *ctx, const char *path);
|
||||
|
Loading…
Reference in New Issue
Block a user