mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Suppress old gcc -Wpedantic const warnings ([1a2592])
This commit is contained in:
parent
1a25927b73
commit
d0e5878dce
@ -116,7 +116,7 @@ static int pdf_quelmode(const unsigned char codeascii) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Check consecutive segments for text/num and return the length */
|
/* Check consecutive segments for text/num and return the length */
|
||||||
static int pdf_text_num_length(const int liste[3][PDF_MAX_LEN], const int indexliste, const int start) {
|
static int pdf_text_num_length(int liste[3][PDF_MAX_LEN], const int indexliste, const int start) {
|
||||||
int i, len = 0;
|
int i, len = 0;
|
||||||
for (i = start; i < indexliste; i++) {
|
for (i = start; i < indexliste; i++) {
|
||||||
if (liste[1][i] == BYT)
|
if (liste[1][i] == BYT)
|
||||||
@ -223,8 +223,7 @@ static int pdf_text_submode_length(const unsigned char chaine[], const int start
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Whether to stay in numeric mode or not */
|
/* Whether to stay in numeric mode or not */
|
||||||
static int pdf_num_stay(const unsigned char *chaine, const int indexliste, const int liste[3][PDF_MAX_LEN],
|
static int pdf_num_stay(const unsigned char *chaine, const int indexliste, int liste[3][PDF_MAX_LEN], const int i) {
|
||||||
const int i) {
|
|
||||||
int curtable, last_len, last_ml, next_len, num_cws, tex_cws;
|
int curtable, last_len, last_ml, next_len, num_cws, tex_cws;
|
||||||
|
|
||||||
if (liste[0][i] >= 13 || (indexliste == 1 && liste[0][i] > 5)) {
|
if (liste[0][i] >= 13 || (indexliste == 1 && liste[0][i] > 5)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user