diff options
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/e-util.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 1cd661efc8..3d07500de2 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,5 +1,9 @@ 2007-12-05 Srinivasa Ragavan <sragavan@novell.com> + * e-util.h: Fix a compiler warning + +2007-12-05 Srinivasa Ragavan <sragavan@novell.com> + * e-util.c: (get_lock_filename), (e_file_lock_create), (e_file_lock_destroy), (e_file_lock_exists): Add utility functions for startup-running lock create, check and delete. diff --git a/e-util/e-util.h b/e-util/e-util.h index b37f2abdb5..fc8da98b7f 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -111,9 +111,9 @@ void e_file_update_save_path (gchar *uri, gboolean free); gchar * e_file_get_save_path (void); -gboolean e_file_lock_create (); -void e_file_lock_destroy (); -gboolean e_file_lock_exists (); +gboolean e_file_lock_create (void); +void e_file_lock_destroy (void); +gboolean e_file_lock_exists (void); #ifdef __cplusplus } |