summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-08-21 10:37:13 +0300
committerPhilip Withnall <withnall@endlessm.com>2019-08-21 10:37:13 +0300
commit60a2e032a8b076d43a0a400011f59acb48a19234 (patch)
tree78934b1dc19bb0a20b5896747bd4085284b777e8
parentd15d1597d143228ac321e1bb25ec459cb7c3781a (diff)
downloadlibgdata-60a2e032a8b076d43a0a400011f59acb48a19234.tar.gz
media: Use memmove() instead of deprecated g_memmove()
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--gdata/media/gdata-media-group.c2
1 files changed, 1 insertions, 1 deletions
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';
}
}