X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=score.c;h=ad147bba1ef7dc9ac90fbcb30e20a267e0376160;hp=a044faa3e23991044763e5838ff45cc3e82d927f;hb=0fa4e460a878fe80f937df5e1da31a33221e0ee0;hpb=c91ff5bca6a9161354e9baf85423d1498c832696 diff --git a/score.c b/score.c index a044faa3..ad147bba 100644 --- a/score.c +++ b/score.c @@ -12,9 +12,7 @@ #include "list.h" #include "string.h" -int mood_compute_score(const void *row, long *score); - -static void *score_table; +static struct osl_table *score_table; static int ptr_compare(const struct osl_object *obj1, const struct osl_object *obj2) { @@ -360,8 +358,5 @@ int score_init(struct table_info *ti, const char *db) score_table_desc.dir = db; ti->desc = &score_table_desc; ti->flags = TBLFLAG_SKIP_CREATE; - int ret = osl_open_table(ti->desc, &ti->table); - - score_table = ti->table; - return ret; + return osl_open_table(ti->desc, &score_table); }