Skip to content

Commit

Permalink
Coverity CID 468157
Browse files Browse the repository at this point in the history
  • Loading branch information
matt335672 committed Feb 3, 2025
1 parent eff8ba7 commit b7a94bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vnc/vnc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ lib_mod_set_param(struct vnc *v, const char *name, const char *value)
}
else if (g_strcasecmp(name, "disabled_encodings_mask") == 0)
{
v->enabled_encodings_mask = ~g_atoi(value);
v->enabled_encodings_mask = (unsigned int)~g_atoi(value);
}
else if (g_strcasecmp(name, "client_info") == 0)
{
Expand Down

0 comments on commit b7a94bd

Please sign in to comment.