From cea4a22f9bbe3cf99f040557654c7ba03133355a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 25 Mar 2011 14:49:46 +0000 Subject: [PATCH] fixed warnings --- src/C/H5_attachments.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/C/H5_attachments.c b/src/C/H5_attachments.c index 4fd97ac..4482f8a 100644 --- a/src/C/H5_attachments.c +++ b/src/C/H5_attachments.c @@ -18,8 +18,11 @@ H5GetAttachmentInfoByIdx ( h5_int64_t* const type, // OUT h5_size_t* const npoints // OUT ) { - H5_API_ENTER5 (h5_err_t, "idx=%llu, name=0x%p, len_name=%llu, type=0x%p, npoints=0x%p", - idx, name, len_name, type, npoints); + H5_API_ENTER5 (h5_err_t, + "idx=%llu, name=0x%p, len_name=%llu, type=0x%p, npoints=0x%p", + (long long unsigned)idx, + name, (long long unsigned)len_name, + type, npoints); H5_API_RETURN (h5_get_attachment_info_by_idx ( f, idx, name, len_name, type, npoints)); }