Mark stubbed-out function parameter as UNUSED.
authorBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:20:57 +0000 (15:20 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 23:27:53 +0000 (15:27 -0800)
lib/queue.c

index 04610cfa29699b3cb0b3050e9ac063c18434b016..24eb01d73ec6ad664a25b0b11bc816bf5b9bbd0c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
+/* Copyright (c) 2008, 2009 The Board of Trustees of The Leland Stanford
  * Junior University
  * 
  * We are making the OpenFlow specification and associated documentation
@@ -34,6 +34,7 @@
 #include <config.h>
 #include "queue.h"
 #include <assert.h>
+#include "compiler.h"
 #include "ofpbuf.h"
 
 static void check_queue(struct ofp_queue *q);
@@ -114,7 +115,7 @@ queue_pop_head(struct ofp_queue *q)
 
 /* Checks the internal integrity of 'q'.  For use in debugging. */
 static void
-check_queue(struct ofp_queue *q)
+check_queue(struct ofp_queue *q UNUSED)
 {
 #if 0
     struct ofpbuf *iter;