From 2e697d39982ad3bb3ff50344f80109a0796c0047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Wed, 2 Apr 2014 06:57:31 +0000 Subject: [PATCH] fix for non C++11-compilers (mac); refs #28 --- src/cryptoki.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryptoki.hxx b/src/cryptoki.hxx index b9c753d..9c2b8d1 100644 --- a/src/cryptoki.hxx +++ b/src/cryptoki.hxx @@ -2017,7 +2017,7 @@ namespace cryptoki { Attribute res; CK_ATTRIBUTE attr; attr.type = a; - attr.pValue = 0: + attr.pValue = 0; attr.ulValueLen = 0; //! calls @c C_GetAttributeValue if (!check(_session._slot.library()->C_GetAttributeValue @@ -2144,7 +2144,7 @@ namespace cryptoki { it!=attrs.end(); ++it) { CK_ATTRIBUTE attr; attr.type = *it; - attr.pValue = 0: + attr.pValue = 0; attr.ulValueLen = 0; try { //! calls @c C_GetAttributeValue