* dyn_realloc.c: Remove unused variable
authorEzra Peisach <epeisach@mit.edu>
Mon, 26 Jun 2000 23:09:57 +0000 (23:09 +0000)
committerEzra Peisach <epeisach@mit.edu>
Mon, 26 Jun 2000 23:09:57 +0000 (23:09 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12435 dc483132-0cff-0310-8789-dd5450dbe970

src/util/dyn/ChangeLog
src/util/dyn/dyn_realloc.c

index f3bbe4c8dea54efb8660b129eda54ce37e2915a1..4d509369d98ffc76287bca6ffcba520dbe462270 100644 (file)
@@ -1,3 +1,7 @@
+2000-06-26  Ezra Peisach  <epeisach@mit.edu>
+
+       * dyn_realloc.c: Remove unused variable.
+
 1999-10-26  Wilfredo Sanchez  <tritan@mit.edu>
 
        * Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
index 31e3975b5718566fb47e648953c25e1923ce8bf8..0294d0198dd312693909832bb34a5389558f8ade 100644 (file)
@@ -22,7 +22,7 @@ int _DynResize(obj, req)
    DynObjectP obj;
    int req;
 {
-     int cnt, size;
+     int size;
      
      if (obj->size > req)
          return DYN_OK;