[evolution/gnome-3-10] e-utils: replacing g_memmove with memmove



commit 8585e5e07eb03c894e5e4067218fd5e86a1d7e17
Author: Alberto Ruiz <aruiz redhat com>
Date:   Wed Nov 27 13:48:09 2013 +0100

    e-utils: replacing g_memmove with memmove
    
    glib has removed g_memmove, since it was a macro there is no ABI break but sources have to be adapted to 
switch to memmove
    See glib commit 6e4a7fca431f53fdfd89afbe956212229cf52200 for further reference.
    
    (cherry picked from commit f72c529f093da0d9a94ef9f8dad797e96bf06bcd)

 e-util/e-attachment.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/e-util/e-attachment.c b/e-util/e-attachment.c
index f0c00b1..41a3423 100644
--- a/e-util/e-attachment.c
+++ b/e-util/e-attachment.c
@@ -1860,7 +1860,7 @@ attachment_load_write_cb (GOutputStream *output_stream,
                load_context->total_num_bytes, attachment);
 
        if (bytes_written < load_context->bytes_read) {
-               g_memmove (
+               memmove (
                        load_context->buffer,
                        load_context->buffer + bytes_written,
                        load_context->bytes_read - bytes_written);
@@ -2767,7 +2767,7 @@ attachment_save_write_cb (GOutputStream *output_stream,
        input_stream = save_context->input_stream;
 
        if (bytes_written < save_context->bytes_read) {
-               g_memmove (
+               memmove (
                        save_context->buffer,
                        save_context->buffer + bytes_written,
                        save_context->bytes_read - bytes_written);


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