[file-roller] removed use of g_memmove
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [file-roller] removed use of g_memmove
- Date: Mon, 14 Apr 2014 20:43:38 +0000 (UTC)
commit 5a8f64d4ba48591a6e2624062d91bd8614e26c19
Author: Paolo Bacchilega <paobac src gnome org>
Date: Mon Apr 14 22:38:06 2014 +0200
removed use of g_memmove
src/glib-utils.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/glib-utils.c b/src/glib-utils.c
index fa384d5..372da12 100644
--- a/src/glib-utils.c
+++ b/src/glib-utils.c
@@ -665,7 +665,7 @@ g_utf8_strchug (char *string)
c = g_utf8_get_char (scan);
}
- g_memmove (string, scan, strlen (scan) + 1);
+ memmove (string, scan, strlen (scan) + 1);
return string;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]