Fix harmless warnings in the Build tools.

git-svn-id: https://svn.eduke32.com/eduke32@3097 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2012-10-29 04:28:10 +00:00
parent f51bdc2faa
commit 7e4e760e9c
3 changed files with 5 additions and 5 deletions

View file

@ -186,7 +186,7 @@ endif
# compiler flags etc.
BASECONLYFLAGS=-Wimplicit
BASECONLYFLAGS=-Wimplicit -Wdeclaration-after-statement
BASECXXFLAGS= -fno-exceptions -fno-rtti
BASEASFLAGS=-s #-g
BASELDFLAGS=
@ -269,7 +269,7 @@ else
W_NO_UNUSED_RESULT :=
endif
CWARNS := -W -Wall -Wdeclaration-after-statement -Werror-implicit-function-declaration \
CWARNS := -W -Wall -Werror-implicit-function-declaration \
-Wpointer-arith \
-Wextra \
#-Wstrict-prototypes \

View file

@ -146,7 +146,7 @@ static int buildkeytranslationtable(void)
#undef main
int main(int argc, char **argv)
int main(void)
{
int i;

View file

@ -62,13 +62,13 @@ private:
void writeShort(ofstream &ofs, short s)
{
char d[2] = { s&255, (s>>8)&255 };
char d[2] = { static_cast<char>(s&255), static_cast<char>((s>>8)&255) };
ofs.write(d, 2);
}
void writeLong(ofstream &ofs, long l)
{
char d[4] = { l&255, (l>>8)&255, (l>>16)&255, (l>>24)&255 };
char d[4] = { static_cast<char>(l&255), static_cast<char>((l>>8)&255), static_cast<char>((l>>16)&255), static_cast<char>((l>>24)&255) };
ofs.write(d, 4);
}