mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-30 06:45:28 -04:00
Fixed general_rules declaration in composite.c after refactor in commit [4963a7]
This commit is contained in:
parent
0a913ad9e3
commit
6b1421b895
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue