diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-05-18 23:53:55 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:21 +0800 |
commit | 3b1865b52e8d45c1387176d5c08b8a3441d50a50 (patch) | |
tree | 1490ff4649be2f4a1a0a5da734a57f9ea814c994 /src | |
parent | 21d0796aaa90612dd499da0d74ac9200bd448393 (diff) | |
download | gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar.gz gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar.bz2 gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar.lz gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar.xz gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.tar.zst gsoc2013-empathy-3b1865b52e8d45c1387176d5c08b8a3441d50a50.zip |
Fix coding style
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-ft-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-ft-manager.c b/src/empathy-ft-manager.c index 7b3e88a24..b4f74ec89 100644 --- a/src/empathy-ft-manager.c +++ b/src/empathy-ft-manager.c @@ -281,7 +281,7 @@ ft_manager_format_progress_bytes_and_percentage (guint64 current, if (percentage != NULL) { - if (total != 0) + if (total != 0) *percentage = current * 100 / total; else *percentage = -1; @@ -896,7 +896,7 @@ ft_manager_delete_event_cb (GtkWidget *widget, /* There is still FTs on flight, just hide the window */ DEBUG ("Hiding window"); gtk_widget_hide (widget); - return TRUE; + return TRUE; } return FALSE; |