diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-12-07 22:30:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-12-07 23:04:45 +0800 |
commit | 7b98c39b0adecc942c091d293032851149107dbc (patch) | |
tree | 8588a63b94eebcb0ad06cab29dee3ee5474e4d3e /plugins | |
parent | c9edf5ef1f8cba1556fabfa9234b5cb155b59ceb (diff) | |
download | gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.gz gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.bz2 gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.lz gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.xz gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.zst gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/external-editor/external-editor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/external-editor/external-editor.c b/plugins/external-editor/external-editor.c index 97cb6abf5e..5029298ca8 100644 --- a/plugins/external-editor/external-editor.c +++ b/plugins/external-editor/external-editor.c @@ -377,8 +377,9 @@ external_editor_thread (gpointer user_data) /* We no longer need that temporary file */ if (g_remove (filename) == -1) - g_warning ("%s: Failed to remove file '%s': %s", - G_STRFUNC, filename, g_strerror (errno)); + g_warning ( + "%s: Failed to remove file '%s': %s", + G_STRFUNC, filename, g_strerror (errno)); g_free (filename); } } |