Coding style fixes

svn path=/trunk/; revision=6337
This commit is contained in:
Matthias Clasen
2008-01-21 05:12:16 +00:00
parent d16037e0e7
commit a043325ec1
8 changed files with 88 additions and 56 deletions

View File

@@ -116,7 +116,7 @@ _ih_startup (void)
* Adds a subscription to be monitored.
*/
gboolean
_ih_sub_add (inotify_sub * sub)
_ih_sub_add (inotify_sub *sub)
{
G_LOCK (inotify_lock);
@@ -131,7 +131,7 @@ _ih_sub_add (inotify_sub * sub)
* Cancels a subscription which was being monitored.
*/
gboolean
_ih_sub_cancel (inotify_sub * sub)
_ih_sub_cancel (inotify_sub *sub)
{
G_LOCK (inotify_lock);
@@ -150,7 +150,8 @@ _ih_sub_cancel (inotify_sub * sub)
static void
ih_event_callback (ik_event_t *event, inotify_sub *sub)
ih_event_callback (ik_event_t *event,
inotify_sub *sub)
{
gchar *fullpath;
GFileMonitorEvent eflags;