aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-12-20 14:45:24 +0000
committerEvan Huus <eapache@gmail.com>2013-12-20 14:45:24 +0000
commitc38424311f573b631b4015ff587c8423ceaef57f (patch)
tree1aae46fdde46660283b5fae4a6d49f90fa8b33f5 /ui
parent9fba5a787ebce032b31105aad1d575258db0c568 (diff)
Replace one more g_memmove with memmove, add a cast to make the Lua stuff
compile. svn path=/trunk/; revision=54296
Diffstat (limited to 'ui')
-rw-r--r--ui/export_object_smb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/export_object_smb.c b/ui/export_object_smb.c
index dec3de9eca..59ccaa2cb2 100644
--- a/ui/export_object_smb.c
+++ b/ui/export_object_smb.c
@@ -254,7 +254,7 @@ gpointer dest_memory_addr;
/* ...then, put the chunk of the file in the right place */
if (!file->is_out_of_memory) {
dest_memory_addr = entry->payload_data + chunk_offset;
- g_memmove(dest_memory_addr, eo_info->payload_data, eo_info->payload_len);
+ memmove(dest_memory_addr, eo_info->payload_data, eo_info->payload_len);
}
}