From c6906e8b8cee24b6e80a4892f7d9a613fab6be5f Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Tue, 11 Mar 2014 02:59:34 +0000 Subject: [PATCH] Use correct unpack function This commit was SVN r30983. --- opal/dss/dss_pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/dss/dss_pack.c b/opal/dss/dss_pack.c index ea9b52477f..3ec7ace2d7 100644 --- a/opal/dss/dss_pack.c +++ b/opal/dss/dss_pack.c @@ -382,7 +382,7 @@ int opal_dss_pack_time(opal_buffer_t *buffer, const void *src, */ for (i = 0; i < num_vals; ++i) { ui64 = (uint64_t)ssrc[i]; - if (OPAL_SUCCESS != (ret = opal_dss_pack_int(buffer, &ui64, 1, OPAL_UINT64))) { + if (OPAL_SUCCESS != (ret = opal_dss_pack_int64(buffer, &ui64, 1, OPAL_UINT64))) { return ret; } }