diff options
author | Erik Skultety <eskultet@redhat.com> | 2016-05-17 12:39:02 +0200 |
---|---|---|
committer | Erik Skultety <eskultet@redhat.com> | 2016-05-17 12:45:48 +0200 |
commit | ef6940b917a514f338afeac6a84e8dc2c63572ea (patch) | |
tree | 1f3280939645c54b6e174082de7987c2b084add5 | |
parent | e10a4c67c3957c4e0833ab0eff367be4b91049eb (diff) | |
download | libvirt-ef6940b917a514f338afeac6a84e8dc2c63572ea.tar.gz |
admin: include: Rename argument dmn to conn in virAdmConnectListServers
This is just a trivial cosmetic change, throughout all the APIs the argument
is called conn as from 'connection', having 'dmn' at just this single place
might look odd, so better change it now when the interface is still explicitly
disabled and we still have the ability to alter the signatures and public
names before officially enabling it.
Signed-off-by: Erik Skultety <eskultet@redhat.com>
-rw-r--r-- | include/libvirt/libvirt-admin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libvirt/libvirt-admin.h b/include/libvirt/libvirt-admin.h index 4e6074e6a3..bde4aefd79 100644 --- a/include/libvirt/libvirt-admin.h +++ b/include/libvirt/libvirt-admin.h @@ -91,7 +91,7 @@ int virAdmConnectRef(virAdmConnectPtr conn); int virAdmConnectIsAlive(virAdmConnectPtr conn); int virAdmServerFree(virAdmServerPtr srv); -int virAdmConnectListServers(virAdmConnectPtr dmn, +int virAdmConnectListServers(virAdmConnectPtr conn, virAdmServerPtr **servers, unsigned int flags); |