1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-09-03 01:21:16 +03:00

Remove redundant break

The die function is noreturn so will exit the program
This commit is contained in:
Matt Clarkson
2015-05-21 18:03:29 +01:00
parent faee7ad229
commit da57b9e811

View File

@@ -360,7 +360,6 @@ static int set_option(char **options, const char *name, const char *value)
break;
default:
die("Unknown option type - option %s", name);
break;
}
for (i = 0; i < MAX_OPTIONS; i++) {