diff options
author | Alberto Ruiz <aruiz@redhat.com> | 2013-11-27 20:48:09 +0800 |
---|---|---|
committer | Alberto Ruiz <aruiz@redhat.com> | 2013-11-27 20:48:09 +0800 |
commit | f72c529f093da0d9a94ef9f8dad797e96bf06bcd (patch) | |
tree | 119e397477e34645a8c04b56f3796dae7a10a7c5 /e-util | |
parent | e80ec71e4c532dcfd4f35edfed7d204336b530ce (diff) | |
download | gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar.gz gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar.bz2 gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar.lz gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar.xz gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.tar.zst gsoc2013-evolution-f72c529f093da0d9a94ef9f8dad797e96bf06bcd.zip |
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.
Diffstat (limited to 'e-util')
-rw-r--r-- | 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 42d5e93caf..6b53c2529a 100644 --- a/e-util/e-attachment.c +++ b/e-util/e-attachment.c @@ -1863,7 +1863,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); @@ -2773,7 +2773,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); |