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/e-util.h | |
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/e-util.h')
-rw-r--r-- | e-util/e-util.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 } |