Remove unreachable statements.

From
8d2ab1bfcf
This commit is contained in:
Harald Oehlmann 2015-10-16 14:26:13 +02:00
parent 96974d2cd1
commit f1f6d4ffc6
4 changed files with 9 additions and 12 deletions

View file

@ -730,7 +730,6 @@ int ZBarcode_Print(struct zint_symbol *symbol, int rotate_angle)
default:
strcpy(symbol->errtxt, "Invalid rotation angle");
return ERROR_INVALID_OPTION;
break;
}
if(strlen(symbol->outfile) > 3) {
@ -783,7 +782,6 @@ int ZBarcode_Buffer(struct zint_symbol *symbol, int rotate_angle)
default:
strcpy(symbol->errtxt, "Invalid rotation angle");
return ERROR_INVALID_OPTION;
break;
}
error_number = bmp_handle(symbol, rotate_angle);