X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=rln.c;h=beb8c9330983fe94c8eab7b4bb288093ba5bb27d;hb=7a68775424579a2e57843186afffb8e46b4314ad;hp=da8fb781ef61c6c6ddf4da633c9521db458ded10;hpb=35f3e59d5c26e96743cd77315ae1d466b13e9427;p=rln diff --git a/rln.c b/rln.c index da8fb78..beb8c93 100644 --- a/rln.c +++ b/rln.c @@ -950,7 +950,8 @@ int dofile(char * fname, int flag, char * sym) // Reached maximum file handles if (hd == NHANDLES) { - if (flush_handles()) return 1; + if (flush_handles()) + return 1; } // Attempt to open input file @@ -2112,7 +2113,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) unsigned symtype = 0; fsize = FSIZE(handle); // Get size of include file - dsize = (fsize+secalign) & ~secalign; // Round up to a alignment boundary + dsize = (fsize + secalign) & ~secalign; // Round up to a alignment boundary sym1len = strlen(sym1) + 1; // Get sym1 length + null termination sym2len = strlen(sym2) + 1; // Get sym2 length + null termination @@ -2129,7 +2130,7 @@ int doinclude(char * fname, int handle, char * sym1, char * sym2, int segment) } // Read in binary data - if (read(handle, ptr+32, fsize) != fsize) + if (read(handle, ptr + 32, fsize) != fsize) { printf("File read error on %s\n", fname); close(handle);