added automake.mk files in src/language
[pspp] / src / linked-list.c
index a98a3a1818128e614bba9c8fa749b74f925f5a70..e7631a43f53da55ef1f7eae3ecd73b94f00508c1 100644 (file)
@@ -14,8 +14,8 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 #include <config.h>
 #include <assert.h>
@@ -39,7 +39,7 @@ ll_first (const struct linked_list *ll, struct ll_iterator *li)
 
 /* Return the next element in LL iterated by LI */
 void *
-ll_next (const struct linked_list *ll, struct ll_iterator *li)
+ll_next (const struct linked_list *ll UNUSED, struct ll_iterator *li)
 {
   assert( ll ) ;