mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 08:03:04 +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:
parent
7e55213124
commit
a3ddf4639d
@ -1231,7 +1231,7 @@ public:
|
||||
{
|
||||
add_byte(strlen(string));
|
||||
UCHAR c;
|
||||
while (c = *string++) {
|
||||
while ((c = *string++)) {
|
||||
add_byte(c);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user