Reorder the members of struct _srec to make type punning with

Lists work.


git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@254 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Tim Cava
2013-07-03 03:06:44 +00:00
parent ed1ad22d70
commit 114f6f52f0

View File

@@ -72,9 +72,9 @@ typedef struct {
/* srec -- linked list of scores */ /* srec -- linked list of scores */
typedef struct _srec { typedef struct _srec {
struct _srec *next;
char *nick; char *nick;
unsigned long score; unsigned long score;
struct _srec *next;
} srec; } srec;
struct settings { struct settings {