8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:43:02 +01:00

Fixed gcc warnings

This commit is contained in:
alexpeshkoff 2010-12-12 14:22:39 +00:00
parent a0852cae07
commit adfdb00187

View File

@ -1145,7 +1145,7 @@ static void gen_blr(void* /*user_arg*/, SSHORT /*offset*/, const char* string)
}
}
*q1 = 0;
printa(indent, line);
printa(indent, "%s", line);
length = length - (q - p);
p = q;
if (first_line)
@ -2670,12 +2670,12 @@ static void gen_raw(const UCHAR* blr, int request_length)
if (p < limit)
continue;
*p = 0;
printa(INDENT, buffer);
printa(INDENT, "%s", buffer);
p = buffer;
}
*p = 0;
printa(INDENT, buffer);
printa(INDENT, "%s", buffer);
}
@ -3438,7 +3438,7 @@ static void gen_variable( const act* action, int column)
{
TEXT s[MAX_REF_SIZE];
printa(column, gen_name(s, action->act_object, false));
printa(column, "%s", gen_name(s, action->act_object, false));
}