summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/teams.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/teams.h b/src/teams.h
index 87cc01f..e22b262 100644
--- a/src/teams.h
+++ b/src/teams.h
@@ -11,13 +11,13 @@ NEW(team);
DEL(team);
// field getters
-SETTER(team, name, char *);
+SETTER(team, name, char *);
SETTER(team, institution, char *);
SETTER(team, member_name, char *, int);
SETTER(team, solved, uint8_t);
// field setters
-GETTER(team, name, char *);
+GETTER(team, name, char *);
GETTER(team, institution, char *);
GETTER(team, member_name, char *, int);
GETTER(team, solved, uint8_t);
@@ -29,3 +29,4 @@ DEFINE(team, find_champion, team, team *, unsigned);
# include "cobj.h"
#endif /* __TEAMS_H__ */
+/* vim: ts=8 */