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

fix warning: using the result of an assignment as a condition without parentheses

note:place parentheses around the assignment to silence this warning
This commit is contained in:
mapopa 2011-05-20 09:13:23 +00:00
parent 7e55213124
commit a3ddf4639d

View File

@ -1231,7 +1231,7 @@ public:
{
add_byte(strlen(string));
UCHAR c;
while (c = *string++) {
while ((c = *string++)) {
add_byte(c);
}
}