comparison srogue/rogue.h @ 234:c10fe421b8fb

Fix various overlooked causes of warnings. GCC5 now produces under 300 lines of warnings, but the remaining ones will require more complex solutions.
author John "Elwin" Edwards
date Sun, 06 Mar 2016 21:02:59 -0500
parents b67b99f6c92b
children 3d4252fa2ed3
comparison
equal deleted inserted replaced
233:0990adf580ee 234:c10fe421b8fb
563 * Linked list data type 563 * Linked list data type
564 */ 564 */
565 struct linked_list { 565 struct linked_list {
566 struct linked_list *l_next; 566 struct linked_list *l_next;
567 struct linked_list *l_prev; 567 struct linked_list *l_prev;
568 char *l_data; /* Various structure pointers */ 568 void *l_data; /* Various structure pointers */
569 }; 569 };
570 570
571 571
572 /* 572 /*
573 * Stuff about magic items 573 * Stuff about magic items