Added default case to nmsexec() return value

modified:   src/sneakers.c
This commit is contained in:
Brian Barto 2016-04-20 12:27:33 -04:00
parent dd50839dae
commit 0f5db67cac
1 changed files with 3 additions and 0 deletions

View File

@ -175,6 +175,9 @@ int main(void) {
case '6':
printf("User chose 6\n");
break;
default:
printf("Unrecognized selection: %c\n", input);
break;
}
return 0;