1

fix -e flag

This commit is contained in:
Dan 2018-06-02 00:30:09 +02:00
parent a24f3cc62c
commit af5b985970

2
main.c
View File

@ -40,7 +40,7 @@ int main(int argc, char *argv[]) {
int flags = 0; int flags = 0;
int c = 0; int c = 0;
while ((c = getopt_long(argc, argv, "f:d:pmst", options, NULL)) != -1) { while ((c = getopt_long(argc, argv, "f:e:pmst", options, NULL)) != -1) {
switch (c) { switch (c) {
case 'p': case 'p':
flags |= FLAG_PRETTY_PRINT; flags |= FLAG_PRETTY_PRINT;