Datatype definition for command word types.

This commit is contained in:
Jason S. Ninneman 2017-08-02 19:22:52 -07:00
parent 1966264715
commit 0d3393ebee
2 changed files with 4 additions and 4 deletions

2
misc.c
View file

@ -413,7 +413,7 @@ static bool is_valid_int(const char *str)
return true;
}
static void get_vocab_metadata(const char* word, vocab_t* id, enum wordtype* type)
static void get_vocab_metadata(const char* word, vocab_t* id, word_type_t* type)
{
/* Check for an empty string */
if (strncmp(word, "", sizeof("")) == 0) {