summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <alberto.ruiz@codethink.co.uk>2011-09-26 17:29:00 +0100
committerAlberto Ruiz <alberto.ruiz@codethink.co.uk>2011-09-26 17:29:00 +0100
commit4f927aa153c90bab4cda84d726b8061203499bf4 (patch)
tree91ca6997c87f847ac94ab7b33ac65981324204ac
parent38a840730207e0708d4845f2221e56bf28d2029e (diff)
downloadtbdiff-4f927aa153c90bab4cda84d726b8061203499bf4.tar.gz
Fix enum value for FIFO
-rw-r--r--stat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stat.h b/stat.h
index d2e31cc..c850e4e 100644
--- a/stat.h
+++ b/stat.h
@@ -12,7 +12,7 @@ typedef enum {
otap_stat_type_symlink = 'l',
otap_stat_type_chrdev = 'c',
otap_stat_type_blkdev = 'b',
- otap_stat_type_fifo = 'o',
+ otap_stat_type_fifo = 'p',
otap_stat_type_socket = 's'
} otap_stat_type_e;