changeset 1514:50fa1e16ba5d trunk

[svn] - indentation cleanups
author nenolod
date Mon, 07 Aug 2006 02:26:07 -0700
parents 1b5f5a995838
children 56818382846e
files ChangeLog Plugins/General/notify/notify.c
diffstat 2 files changed, 14 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Aug 07 00:39:19 2006 -0700
+++ b/ChangeLog	Mon Aug 07 02:26:07 2006 -0700
@@ -1,3 +1,12 @@
+2006-08-07 07:39:19 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [1940]
+  - to prevent SIGSEGV
+  
+
+  Changes:        Modified:
+  +6 -0           trunk/Plugins/Input/cue/cuesheet.c  
+
+
 2006-08-06 22:13:01 +0000  Giacomo Lozito <james@develia.org>
   revision [1938]
   - refinements for the notify plugin
--- a/Plugins/General/notify/notify.c	Mon Aug 07 00:39:19 2006 -0700
+++ b/Plugins/General/notify/notify.c	Mon Aug 07 02:26:07 2006 -0700
@@ -58,10 +58,10 @@
 
 static void cleanup(void)
 {
-   if ( timeout_tag > 0 )
-   {
-	  g_source_remove(timeout_tag);
-	  timeout_tag = 0;
+	if ( timeout_tag > 0 )
+	{
+		g_source_remove(timeout_tag);
+		timeout_tag = 0;
 	}
 
 	if (previous_title != NULL)
@@ -72,7 +72,7 @@
 
 	/* Uninitialise libnotify */
 	if ( notify_is_initted() == TRUE )
-	  notify_uninit();
+		notify_uninit();
 }
 
 static gboolean watchdog_func(gpointer unused)