[libgsf] output-iconv: fix compilation by replacing g_memmove() by memmove()



commit 54bc0488c9d74c9d634a8d27c8a0d4eb3b2347c1
Author: Lionel Landwerlin <llandwerlin gmail com>
Date:   Thu Nov 21 16:13:37 2013 +0000

    output-iconv: fix compilation by replacing g_memmove() by memmove()
    
    https://bugzilla.gnome.org/show_bug.cgi?id=712827

 gsf/gsf-output-iconv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gsf/gsf-output-iconv.c b/gsf/gsf-output-iconv.c
index 7196727..35ad10d 100644
--- a/gsf/gsf-output-iconv.c
+++ b/gsf/gsf-output-iconv.c
@@ -119,7 +119,7 @@ iconv_flush (GsfOutputIconv *ic, gboolean must_empty)
                        ok = FALSE;
                } else {
                        ic->buf_len -= bytes_read;
-                       g_memmove (ic->buf, ic->buf + bytes_read, ic->buf_len);
+                       memmove (ic->buf, ic->buf + bytes_read, ic->buf_len);
 
                        ok = gsf_output_write (ic->sink, bytes_written, data);
                        if (!ok) {


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