Fix several VC++ Warnings

git-svn-id: svn://svn.cc65.org/cc65/trunk@38 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-06-08 20:55:04 +00:00
parent 612627f5ca
commit 386c3d412d
4 changed files with 6 additions and 6 deletions

View File

@@ -47,7 +47,7 @@
void Write8 (FILE* F, unsigned char Val)
void Write8 (FILE* F, unsigned Val)
/* Write an 8 bit value to the file */
{
if (putc (Val, F) == EOF) {