[libgdata: 4/6] media: Use memmove() instead of deprecated g_memmove()



commit 60a2e032a8b076d43a0a400011f59acb48a19234
Author: Philip Withnall <withnall endlessm com>
Date:   Wed Aug 21 10:37:13 2019 +0300

    media: Use memmove() instead of deprecated g_memmove()
    
    Signed-off-by: Philip Withnall <withnall endlessm com>

 gdata/media/gdata-media-group.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gdata/media/gdata-media-group.c b/gdata/media/gdata-media-group.c
index 39a41f6b..6d0db9b6 100644
--- a/gdata/media/gdata-media-group.c
+++ b/gdata/media/gdata-media-group.c
@@ -183,7 +183,7 @@ parse_xml (GDataParsable *parsable, xmlDoc *doc, xmlNode *node, gpointer user_da
                                        end -= 2;
 
                                        /* Shift the remainder of the string downwards */
-                                       g_memmove (comma, comma + 2, end - comma);
+                                       memmove (comma, comma + 2, end - comma);
                                        *end = '\0';
                                }
                        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]