mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
Fix gamin/fam difference build issue. (#509419)
2008-01-30 Alexander Larsson <alexl@redhat.com> * fam/fam-helper.c: Fix gamin/fam difference build issue. (#509419) svn path=/trunk/; revision=6422
This commit is contained in:
parent
cfedcdb15a
commit
0234965965
@ -1,3 +1,8 @@
|
||||
2008-01-30 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* fam/fam-helper.c:
|
||||
Fix gamin/fam difference build issue. (#509419)
|
||||
|
||||
2008-01-29 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gappinfo.h:
|
||||
|
@ -41,8 +41,13 @@ struct _fam_sub
|
||||
FAMRequest request;
|
||||
};
|
||||
|
||||
static GFileMonitorEvent
|
||||
fam_event_to_file_monitor_event (FAMCodes code)
|
||||
/* This uses int as the argument type because the
|
||||
real type differs between implementations:
|
||||
gamin has "typedef enum FAMCodes {....} FAMCodes;"
|
||||
fam has "enum FAMCodes { ... }".
|
||||
*/
|
||||
static GFileMonitorEvent
|
||||
fam_event_to_file_monitor_event (int code)
|
||||
{
|
||||
switch (code)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user