diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2007-12-05 23:35:31 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-12-05 23:35:31 +0800 |
commit | 4102e69e63ecd5b04b419dc743cf4ce5916073e9 (patch) | |
tree | f7640630dbba57e1188c5c6bbe5733b7645a7857 /e-util | |
parent | 08380ae64ec3d29f1335ce1d1a4a7b601be7903d (diff) | |
download | gsoc2013-evolution-4102e69e63ecd5b04b419dc743cf4ce5916073e9.tar.gz gsoc2013-evolution-4102e69e63ecd5b04b419dc743cf4ce5916073e9.tar.zst gsoc2013-evolution-4102e69e63ecd5b04b419dc743cf4ce5916073e9.zip |
Fix a compiler warning
2007-12-05 Srinivasa Ragavan <sragavan@novell.com>
* e-util.h: Fix a compiler warning
svn path=/trunk/; revision=34653
Diffstat (limited to 'e-util')
-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 } |