Skip to content

Commit

Permalink
fixup! use uint8_t instead of enum
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikVE committed Jun 19, 2020
1 parent ea1a99d commit 82916fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/shell/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ static void handle_input_line(const shell_command_t *command_list, char *line)
char *readpos = line;
char *writepos = readpos;

enum parse_state pstate = PARSE_BLANK;
uint8_t pstate = PARSE_BLANK;

for (; *readpos != '\0'; readpos++) {

Expand Down

0 comments on commit 82916fe

Please sign in to comment.