From: <svn...@op...> - 2010-01-10 17:24:08
|
Author: dgollub Date: Sun Jan 10 18:23:59 2010 New Revision: 5989 URL: http://www.opensync.org/changeset/5989 Log: Fix build of test/support.o this got broken with previous commit when introducing a new parameter to osync_hashtable_new refs #960 Modified: trunk/tests/support.c Modified: trunk/tests/support.c ============================================================================== --- trunk/tests/support.c Sun Jan 10 18:07:53 2010 (r5988) +++ trunk/tests/support.c Sun Jan 10 18:23:59 2010 (r5989) @@ -299,7 +299,7 @@ OSyncHashTable *hashtable_load(const char *path, const char *objtype, unsigned int entries) { OSyncError *error = NULL; - OSyncHashTable *table = osync_hashtable_new(path, objtype, &error); + OSyncHashTable *table = osync_hashtable_new(path, objtype, NULL, &error); fail_unless(table != NULL, NULL); fail_unless(error == NULL, NULL); |