TAG_EXT typo

This commit is contained in:
Conor Patrick 2019-02-14 15:15:24 -05:00
parent c9862977bf
commit 85c58e9d5b
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ struct logtag tagtable[] = {
{TAG_WALLET,"WALLET"},
{TAG_STOR,"STOR"},
{TAG_BOOT,"BOOT"},
{TAG_BOOT,"EXT"},
{TAG_EXT,"EXT"},
};

View File

@ -41,7 +41,7 @@ typedef enum
TAG_STOR = (1 << 15),
TAG_DUMP2 = (1 << 16),
TAG_BOOT = (1 << 17),
TAG_EXT = (1 << 17),
TAG_EXT = (1 << 18),
TAG_FILENO = (1u << 31)
} LOG_TAG;