From d44cbf2b0bc57c74d94b121cb4c642b31cf4cd76 Mon Sep 17 00:00:00 2001 From: Axel Kittenberger Date: Wed, 24 Nov 2010 21:38:48 +0000 Subject: [PATCH] inotify event types should be local to inotify --- inotify.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inotify.c b/inotify.c index 2194c1b..24b2206 100644 --- a/inotify.c +++ b/inotify.c @@ -42,11 +42,11 @@ /*----------------------------------------------------------------------------- * Event types. */ -const char * ATTRIB = "Attrib"; -const char * MODIFY = "Modify"; -const char * CREATE = "Create"; -const char * DELETE = "Delete"; -const char * MOVE = "Move"; +static const char * ATTRIB = "Attrib"; +static const char * MODIFY = "Modify"; +static const char * CREATE = "Create"; +static const char * DELETE = "Delete"; +static const char * MOVE = "Move"; /** * The inotify file descriptor.