Browse Source

Remove redundant break

The die function is noreturn so will exit the program
Matt Clarkson 10 years ago
parent
commit
da57b9e811
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/main.c

+ 0 - 1
src/main.c

@@ -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++) {