Merge commit 'upstream/4.6.1'
[debian/atlc] / tools / src / locatediff.c
index 6bb9d0df06c092caf4ed8b1bd82a88154cbee990..f2fe4f02c098ef0bbd064ee676fbd75a2dbdd0fd 100644 (file)
@@ -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);
 }