Fixed general_rules declaration in composite.c after refactor in commit [4963a7]

This commit is contained in:
Jojakim Stahl 2017-10-16 10:10:08 +02:00
parent 0a913ad9e3
commit 6b1421b895

View File

@ -65,7 +65,7 @@
#define UINT unsigned short #define UINT unsigned short
extern int general_rules(char field[], char type[]); extern int general_rules(char type[]);
extern int eanx(struct zint_symbol *symbol, unsigned char source[], int length); extern int eanx(struct zint_symbol *symbol, unsigned char source[], int length);
extern int ean_128(struct zint_symbol *symbol, unsigned char source[], const size_t length); extern int ean_128(struct zint_symbol *symbol, unsigned char source[], const size_t length);
extern int rss14(struct zint_symbol *symbol, unsigned char source[], int length); extern int rss14(struct zint_symbol *symbol, unsigned char source[], int length);
@ -1381,7 +1381,7 @@ static int cc_binary_string(struct zint_symbol *symbol, const char source[], cha
} }
} }
latch = general_rules(general_field, general_field_type); latch = general_rules(general_field_type);
i = 0; i = 0;
do { do {