]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed unused variable "i".
authorhno <>
Fri, 24 Aug 2001 19:48:31 +0000 (19:48 +0000)
committerhno <>
Fri, 24 Aug 2001 19:48:31 +0000 (19:48 +0000)
src/fs/coss/async_io.cc

index b3676ea98c9cd0647a4e77dcae4634f68245694a..0c130d8644d8800745f17dcb0799cae2043aa1fc 100644 (file)
@@ -11,7 +11,7 @@
  * supports are read/write, and since COSS works on a single file
  * per storedir it should work just fine.
  *
- * $Id: async_io.cc,v 1.6 2001/08/16 00:16:20 hno Exp $
+ * $Id: async_io.cc,v 1.7 2001/08/24 13:48:31 hno Exp $
  */
 
 #include "squid.h"
@@ -219,8 +219,6 @@ a_file_callback(async_queue_t * q)
 void
 a_file_setupqueue(async_queue_t * q)
 {
-    int i;
-
     /* Make sure the queue isn't setup */
     assert(q->aq_state == AQ_STATE_NONE);
 
@@ -228,7 +226,6 @@ a_file_setupqueue(async_queue_t * q)
 
     /* Done */
     q->aq_state = AQ_STATE_SETUP;
-
 }