From 114f6f52f064e8d7004076a093779095a7a2911f Mon Sep 17 00:00:00 2001 From: Tim Cava Date: Wed, 3 Jul 2013 03:06:44 +0000 Subject: [PATCH] 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 --- dll/acro/acro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/acro/acro.h b/dll/acro/acro.h index 1d089c2..51f244d 100644 --- a/dll/acro/acro.h +++ b/dll/acro/acro.h @@ -72,9 +72,9 @@ typedef struct { /* srec -- linked list of scores */ typedef struct _srec { + struct _srec *next; char *nick; unsigned long score; - struct _srec *next; } srec; struct settings {