inotify event types should be local to inotify

This commit is contained in:
Axel Kittenberger 2010-11-24 21:38:48 +00:00
parent bf8fc03480
commit d44cbf2b0b
1 changed files with 5 additions and 5 deletions

View File

@ -42,11 +42,11 @@
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* Event types. * Event types.
*/ */
const char * ATTRIB = "Attrib"; static const char * ATTRIB = "Attrib";
const char * MODIFY = "Modify"; static const char * MODIFY = "Modify";
const char * CREATE = "Create"; static const char * CREATE = "Create";
const char * DELETE = "Delete"; static const char * DELETE = "Delete";
const char * MOVE = "Move"; static const char * MOVE = "Move";
/** /**
* The inotify file descriptor. * The inotify file descriptor.