Fix ugly formatting

This commit is contained in:
Spencer Berger 2018-03-03 01:43:44 -08:00
parent 667d4d8916
commit a1ce8da81e

View File

@ -1152,8 +1152,8 @@ move_file (char *src_dir, char *dst_dir, char *fname, int dccpermissions)
/* link failed because either the two paths aren't on the */ /* link failed because either the two paths aren't on the */
/* same filesystem or the filesystem doesn't support hard */ /* same filesystem or the filesystem doesn't support hard */
/* links, so we have to do a copy. */ /* links, so we have to do a copy. */
GFile* src_file = g_file_new_for_path(src); GFile *src_file = g_file_new_for_path(src);
GFile* dst_file = g_file_new_for_path(dst); GFile *dst_file = g_file_new_for_path(dst);
g_file_copy_async(src_file, dst_file, G_FILE_COPY_NONE, g_file_copy_async(src_file, dst_file, G_FILE_COPY_NONE,
G_PRIORITY_DEFAULT, NULL, NULL, NULL, G_PRIORITY_DEFAULT, NULL, NULL, NULL,
&move_file_callback, NULL); &move_file_callback, NULL);