diff options
author | Christian Grothoff <christian@grothoff.org> | 2010-10-06 11:44:29 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2010-10-06 11:44:29 +0000 |
commit | b8da6057b2c0c66931ccde9b4bba418fc5222724 (patch) | |
tree | 1e858619686d7e2d38655f9f24bdc64e3e4e8462 /src/datacache/plugin_datacache_postgres.c | |
parent | 7d2cbe5bd19ec95ada5a28a0134185ef29007b69 (diff) |
use size_t
Diffstat (limited to 'src/datacache/plugin_datacache_postgres.c')
-rw-r--r-- | src/datacache/plugin_datacache_postgres.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datacache/plugin_datacache_postgres.c b/src/datacache/plugin_datacache_postgres.c index fcd9e51613..c9d6deaaa5 100644 --- a/src/datacache/plugin_datacache_postgres.c +++ b/src/datacache/plugin_datacache_postgres.c @@ -301,10 +301,10 @@ delete_by_rowid (struct Plugin *plugin, * @param discard_time when to discard the value in any case * @return 0 on error, number of bytes used otherwise */ -static uint32_t +static size_t postgres_plugin_put (void *cls, const GNUNET_HashCode * key, - uint32_t size, + size_t size, const char *data, enum GNUNET_BLOCK_Type type, struct GNUNET_TIME_Absolute discard_time) |