summaryrefslogtreecommitdiff
path: root/inotail.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2008-05-10 11:09:02 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2008-05-10 11:09:02 +0200
commit164d300c2d4d88f2bd787a0c56dc34b3ebb47073 (patch)
tree9e53fd68bd6965b5bc862798543efdbb7fcc3116 /inotail.h
parent63993df448640d59812131bb4db664b2ce3b285a (diff)
Resolve some merge conflicts.
Diffstat (limited to 'inotail.h')
-rw-r--r--inotail.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/inotail.h b/inotail.h
index ea680cb..4c1ca4d 100644
--- a/inotail.h
+++ b/inotail.h
@@ -12,12 +12,11 @@
#define DEFAULT_N_LINES 10 /* Number of items to tail. */
-#define DEFAULT_BUFFER_SIZE 4096
/* inotify event buffer length for one file */
#define INOTIFY_BUFLEN (4 * sizeof(struct inotify_event))
/* tail modes */
-typedef enum { M_LINES, M_BYTES } mode_t;
+enum tail_mode { M_LINES, M_BYTES };
/* Every tailed file is represented as a file_struct */
struct file_struct {