Mercurial > geeqie
comparison src/cache_maint.c @ 1347:79937bc55f3a
Add missing space between switch and first parenthesis.
author | zas_ |
---|---|
date | Sat, 28 Feb 2009 20:52:51 +0000 |
parents | e8f21b91885d |
children | 3a9fb1b52559 |
comparison
equal
deleted
inserted
replaced
1346:c9949c19a6d0 | 1347:79937bc55f3a |
---|---|
621 | 621 |
622 void cache_notify_cb(FileData *fd, NotifyType type, gpointer data) | 622 void cache_notify_cb(FileData *fd, NotifyType type, gpointer data) |
623 { | 623 { |
624 if (type != NOTIFY_TYPE_CHANGE || !fd->change) return; | 624 if (type != NOTIFY_TYPE_CHANGE || !fd->change) return; |
625 | 625 |
626 switch(fd->change->type) | 626 switch (fd->change->type) |
627 { | 627 { |
628 case FILEDATA_CHANGE_MOVE: | 628 case FILEDATA_CHANGE_MOVE: |
629 case FILEDATA_CHANGE_RENAME: | 629 case FILEDATA_CHANGE_RENAME: |
630 cache_maint_moved(fd); | 630 cache_maint_moved(fd); |
631 break; | 631 break; |