X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flinked-list.c;h=e7631a43f53da55ef1f7eae3ecd73b94f00508c1;hb=1f8dd363d6c20d07fcca14cb948018465fa5ed8b;hp=a98a3a1818128e614bba9c8fa749b74f925f5a70;hpb=b7852df2743416201dc85fd672644799cdd1b7b5;p=pspp-builds.git diff --git a/src/linked-list.c b/src/linked-list.c index a98a3a18..e7631a43 100644 --- a/src/linked-list.c +++ b/src/linked-list.c @@ -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 #include @@ -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 ) ;