Skip to content

Commit

Permalink
Fix reported [-Werror=format] issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
vexed committed Jul 16, 2012
1 parent 646f6d7 commit 0bfee18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/netplay/netplay.cpp
Expand Up @@ -795,7 +795,7 @@ static bool NETsendGAMESTRUCT(Socket* sock, const GAMESTRUCT* ourgamestruct)
return false; return false;
} }


debug(LOG_NET, "sent GAMESTRUCT size=%ld game is=%ld", sizeof(buf), sizeof(GAMESTRUCT)); debug(LOG_NET, "sent GAMESTRUCT size=%u game is=%u", (unsigned int)sizeof(buf), (unsigned int)sizeof(GAMESTRUCT));


return true; return true;
} }
Expand Down

0 comments on commit 0bfee18

Please sign in to comment.