X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=tools%2Fsrc%2Flocatediff.c;fp=tools%2Fsrc%2Flocatediff.c;h=f2fe4f02c098ef0bbd064ee676fbd75a2dbdd0fd;hb=ec2d2ab8e90a0c4b86ffc2385655c2fb27fcacd9;hp=6bb9d0df06c092caf4ed8b1bd82a88154cbee990;hpb=795fb988211df268a8f7724bd2f4493c594abee9;p=debian%2Fatlc diff --git a/tools/src/locatediff.c b/tools/src/locatediff.c index 6bb9d0d..f2fe4f0 100644 --- a/tools/src/locatediff.c +++ b/tools/src/locatediff.c @@ -19,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -Dr. David Kirkby, e-mail drkirkby at ntlworld.com +Dr. David Kirkby, e-mail drkirkby at gmail.com */ #include "config.h" @@ -99,5 +99,7 @@ int main (int argc, char **argv) if(mem1[i] != mem2[i]) printf("At offset= %ld file1 = %d file2 = %d difference=%d\n",i,(int) mem1[i],(int) mem2[i],(int) (mem1[i]-mem2[i])); } + fclose(fp1); + fclose(fp2); return(0); }