[libvirt] [PATCHv2 1/5] tests: rename testStripIPv6BracketsData to testStripData

Ján Tomko jtomko at redhat.com
Tue Apr 14 11:28:46 UTC 2015


For reuse with other Strip* functions.
---
 tests/virstringtest.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/virstringtest.c b/tests/virstringtest.c
index a0bfd61..9d0b438 100644
--- a/tests/virstringtest.c
+++ b/tests/virstringtest.c
@@ -522,14 +522,14 @@ testVirStringFreeListCount(const void *opaque ATTRIBUTE_UNUSED)
 }
 
 
-struct testStripIPv6BracketsData {
+struct testStripData {
     const char *string;
     const char *result;
 };
 
 static int testStripIPv6Brackets(const void *args)
 {
-    const struct testStripIPv6BracketsData *data = args;
+    const struct testStripData *data = args;
     int ret = -1;
     char *res = NULL;
 
@@ -766,7 +766,7 @@ mymain(void)
 
 #define TEST_STRIP_IPV6_BRACKETS(str, res)                              \
     do {                                                                \
-        struct testStripIPv6BracketsData stripData = {                  \
+        struct testStripData stripData = {                              \
             .string = str,                                              \
             .result = res,                                              \
         };                                                              \
-- 
2.0.5




More information about the libvir-list mailing list