diff options
author | Stef Walter <stefw@gnome.org> | 2013-03-18 23:16:42 +0100 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-03-18 23:16:42 +0100 |
commit | 4ad4d5742037f156e07a4e28b202e49984e27a89 (patch) | |
tree | d4614b61d28e6b56a27f7bf5ce265446ab2d6f68 | |
parent | ba67d1214f6d9254546997ceec310fce2f675679 (diff) |
trust: Fix trust tests on 32-bit builds
-rw-r--r-- | trust/tests/test-persist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trust/tests/test-persist.c b/trust/tests/test-persist.c index d3bd117..b9a79e9 100644 --- a/trust/tests/test-persist.c +++ b/trust/tests/test-persist.c @@ -159,10 +159,10 @@ test_number (CuTest *tc) { const char *input = "[p11-kit-object-v1]\n" "class: data\n" - "value: 29202390239\n" + "value: 29202390\n" "application: \"test-persist\"\n"; - CK_ULONG value = 29202390239; + CK_ULONG value = 29202390; CK_ATTRIBUTE expected[] = { { CKA_CLASS, &data, sizeof (data) }, |