소스 검색

Remove redundant break

The die function is noreturn so will exit the program
Matt Clarkson 10 년 전
부모
커밋
da57b9e811
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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++) {