Skip to content

Commit

Permalink
nx-X11/programs/Xserver/hw/nxagent/Screen.c: fix boolean vs. logical …
Browse files Browse the repository at this point in the history
…operator typo.
  • Loading branch information
Ionic committed Jun 4, 2018
1 parent a8bc1b8 commit 0a2c49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx-X11/programs/Xserver/hw/nxagent/Screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -8334,7 +8334,7 @@ void nxagentPrintGeometry(void)

for (i = 0; i < screenInfo.numScreens; i++)
{
if (nxagentPrintGeometryFlags && (1 << i))
if (nxagentPrintGeometryFlags & (1 << i))
{
fprintf(stderr, "Info: Screen [%d] resized to geometry [%dx%d] "
"fullscreen [%d].\n", i, screenInfo.screens[i] -> width,
Expand Down

0 comments on commit 0a2c49f

Please sign in to comment.