Skip to content

Commit

Permalink
vcquery: get rid of a warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandRosenfeld committed Feb 27, 2022
1 parent 9c95103 commit 5db49a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcquery.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ int main(int argc, char** argv)
int props = 0;

while (available > 0 && props < 5) {
if (propval = vf_get_prop_value_string(prop, namemap[props++])) {
if ((propval = vf_get_prop_value_string(prop, namemap[props++]))) {
strncat(name, propval, available);
available -= strlen(propval);

Expand Down

0 comments on commit 5db49a2

Please sign in to comment.