[gvfs] GVfsJobUnmount: Fix debug messages line endings
- From: Tomas Bzatek <tbzatek src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gvfs] GVfsJobUnmount: Fix debug messages line endings
- Date: Fri, 25 Jan 2013 15:08:17 +0000 (UTC)
commit fe763d3d90a7d6801dc8faf625ab84d4f978adb3
Author: Tomas Bzatek <tbzatek redhat com>
Date: Fri Jan 25 16:06:57 2013 +0100
GVfsJobUnmount: Fix debug messages line endings
g_debug() needs explicit line endings ("\n")
daemon/gvfsjobunmount.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/daemon/gvfsjobunmount.c b/daemon/gvfsjobunmount.c
index 3689754..abf0097 100644
--- a/daemon/gvfsjobunmount.c
+++ b/daemon/gvfsjobunmount.c
@@ -118,7 +118,7 @@ unmount_progress_clear (GVfsJobUnmount *op_job)
if (!op_job->unmount_progress_fired)
return;
- g_debug ("gvfsjobunmount progress clear");
+ g_debug ("gvfsjobunmount progress clear\n");
message = g_strdup_printf (_("%s has been unmounted\n"),
g_vfs_backend_get_display_name (op_job->backend));
@@ -136,7 +136,7 @@ unmount_progress_timeout (gpointer user_data)
op_job->unmount_progress_id = 0;
op_job->unmount_progress_fired = TRUE;
- g_debug ("gvfsjobunmount progress timeout reached");
+ g_debug ("gvfsjobunmount progress timeout reached\n");
message = g_strdup_printf (_("Unmounting %s\nPlease wait"),
g_vfs_backend_get_display_name (op_job->backend));
@@ -154,7 +154,7 @@ unmount_progress_start (GVfsJobUnmount *op_job)
if (op_job->unmount_progress_id > 0)
return;
- g_debug ("gvfsjobunmount progress timeout start");
+ g_debug ("gvfsjobunmount progress timeout start\n");
op_job->unmount_progress_id = g_timeout_add (1500, unmount_progress_timeout, op_job);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]