Skip to content

Commit

Permalink
Fix incorrect filetype in readdir.
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Coates committed Nov 14, 2014
1 parent 2ffb6a0 commit d88e6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcplib/readdir.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class dirent(ctypes.Structure):
DT_UNKNOWN = 0
DT_FIFO = 1
DT_CHR = 2
DT_DIR = 3
DT_DIR = 4
DT_BLK = 6
DT_REG = 8
DT_LNK = 10
Expand Down

0 comments on commit d88e6c4

Please sign in to comment.