Skip to content

Commit

Permalink
Server: compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dcommander committed Oct 26, 2015
1 parent b43ec76 commit 148edb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unix/Xvnc/programs/Xserver/hw/vnc/rfbserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ void
IdleTimerCheck(void)
{
if (idleTimeout >= 0.0 && gettime() >= idleTimeout)
FatalError("TurboVNC server has been idle for %d seconds. Exiting.\n",
rfbIdleTimeout);
FatalError("TurboVNC server has been idle for %u seconds. Exiting.\n",
(unsigned int)rfbIdleTimeout);
}


Expand Down

0 comments on commit 148edb2

Please sign in to comment.