summaryrefslogtreecommitdiff
path: root/tests/utiltest.c
diff options
context:
space:
mode:
authorJán Tomko <jtomko@redhat.com>2020-02-24 00:47:18 +0100
committerJán Tomko <jtomko@redhat.com>2022-02-03 14:10:03 +0100
commit8eb7d869edc54ac533aa4d55724f1d858682f494 (patch)
tree11643d13b7d89b764a4d2728a1eba9c867d64825 /tests/utiltest.c
parentf40179b9fb41189914e69c4006068e59178311d4 (diff)
downloadlibvirt-8eb7d869edc54ac533aa4d55724f1d858682f494.tar.gz
virParseVersionString: rename to virStringParseVersion
Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Laine Stump <laine@redhat.com>
Diffstat (limited to 'tests/utiltest.c')
-rw-r--r--tests/utiltest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utiltest.c b/tests/utiltest.c
index 2921ae8d8c..419dfea913 100644
--- a/tests/utiltest.c
+++ b/tests/utiltest.c
@@ -151,7 +151,7 @@ testParseVersionString(const void *data G_GNUC_UNUSED)
unsigned long version;
for (i = 0; i < G_N_ELEMENTS(versions); ++i) {
- result = virParseVersionString(versions[i].string, &version,
+ result = virStringParseVersion(&version, versions[i].string,
versions[i].allowMissing);
if (result != versions[i].result) {