From 2c28ea1c4138996a307f0b3e2d3317cad3f49ebd Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 9 May 2012 03:13:49 -0700 Subject: [PATCH] replace spellid_t with unsigned int --- src/spells/spells.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells/spells.c b/src/spells/spells.c index 8221cdf94..dead1c0cc 100644 --- a/src/spells/spells.c +++ b/src/spells/spells.c @@ -6590,7 +6590,7 @@ static int sp_wdwpyramid(castorder * co) } typedef struct spelldata { - spellid_t id; + unsigned int id; const char *sname; spell_f sp_function; void (*patzer) (castorder *);