1
0
mirror of https://github.com/simh/simh.git synced 2026-01-30 13:27:50 +00:00

Cleaned up a few compile complaints

This commit is contained in:
Mark Pizzolato
2012-04-27 12:11:12 -07:00
parent 8989b111c1
commit f77a38c3c5
4 changed files with 25 additions and 25 deletions

View File

@@ -108,7 +108,7 @@ if ((expected_checksum != 0) && (checksum != expected_checksum)) {
* If the target include file already exists, determine if it contains the exact
* data in the base ROM image. If so, then we are already done
*/
if (iFile = fopen (include_filename, "r")) {
if (NULL != (iFile = fopen (include_filename, "r"))) {
unsigned char *IncludeData = NULL;
char line[256];
int Difference = 0;