From 60758faa5527d721eded8b8dcf81137565e6af25 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 21 Jun 2012 23:48:55 +0000 Subject: [PATCH] Fix data type This commit was SVN r26633. --- orte/mca/db/hash/db_hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orte/mca/db/hash/db_hash.c b/orte/mca/db/hash/db_hash.c index 480ac01906..3b61a2e165 100644 --- a/orte/mca/db/hash/db_hash.c +++ b/orte/mca/db/hash/db_hash.c @@ -35,7 +35,7 @@ static int init(void); static void finalize(void); static int store(const orte_process_name_t *proc, - const char *key, const void *object, size_t size); + const char *key, const void *object, int32_t size); static int fetch(const orte_process_name_t *proc, const char *key, opal_list_t *values); @@ -174,7 +174,7 @@ static proc_data_t* lookup_orte_proc(opal_hash_table_t *jtable, orte_vpid_t vpid } static int store(const orte_process_name_t *proc, - const char *key, const void *object, size_t size) + const char *key, const void *object, int32_t size) { int i; job_data_t *jtable, *jtab;