reverted LINK_INVALID to '\0'

This commit is contained in:
Fufu Fang 2019-04-26 18:50:41 +01:00
parent 99761b249a
commit 9fe02d8304
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ typedef enum {
LINK_HEAD = 'H',
LINK_DIR = 'D',
LINK_FILE = 'F',
LINK_INVALID = 'I'
LINK_INVALID = '\0'
} LinkType;
/**