indentation

This commit is contained in:
Enno Rehling 2008-02-29 00:26:19 +00:00
parent 92b79a1914
commit 1fb793509c

View file

@ -35,7 +35,7 @@ write_of(const struct attrib * a, FILE* F)
int int
read_of(struct attrib * a, FILE* F) /* return 1 on success, 0 if attrib needs removal */ read_of(struct attrib * a, FILE* F) /* return 1 on success, 0 if attrib needs removal */
{ {
int of, result; int of, result;
result = fscanf(F, "%d", &of); result = fscanf(F, "%d", &of);
if (result<0) return result; if (result<0) return result;
@ -49,13 +49,13 @@ attrib_type at_otherfaction = {
}; };
struct faction * struct faction *
get_otherfaction(const struct attrib * a) get_otherfaction(const struct attrib * a)
{ {
return (faction*)(a->data.v); return (faction*)(a->data.v);
} }
struct attrib * struct attrib *
make_otherfaction(struct faction * f) make_otherfaction(struct faction * f)
{ {
attrib * a = a_new(&at_otherfaction); attrib * a = a_new(&at_otherfaction);
a->data.v = (void*)f; a->data.v = (void*)f;