diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-21 23:01:56 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-21 23:06:11 +0800 |
commit | 558998c27217a0b92188d0870f8510e86194985b (patch) | |
tree | bb18c03f9d51a3faee9593283f167236676745a0 /src | |
parent | b7f1fab64f9a59221b4d666cd788db4efe855b13 (diff) | |
download | gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar.gz gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar.bz2 gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar.lz gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar.xz gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.tar.zst gsoc2013-empathy-558998c27217a0b92188d0870f8510e86194985b.zip |
debug-window: coding style fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-debug-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-debug-window.c b/src/empathy-debug-window.c index 448c06f69..ac0bf9a91 100644 --- a/src/empathy-debug-window.c +++ b/src/empathy-debug-window.c @@ -564,7 +564,7 @@ finally: g_object_unref (pause_buffer); } -static GtkListStore* +static GtkListStore * new_list_store_for_service (void) { return gtk_list_store_new (NUM_DEBUG_COLS, @@ -1614,7 +1614,7 @@ debug_window_save_clicked_cb (GtkToolButton *tool_button, tm_s = localtime (&t); if (tm_s != NULL) { - if (strftime(time_str, sizeof (time_str), "%d-%m-%y_%H-%M-%S", tm_s)) + if (strftime (time_str, sizeof (time_str), "%d-%m-%y_%H-%M-%S", tm_s)) tmp = g_strdup_printf ("%s-%s.log", name, time_str); } |