summaryrefslogtreecommitdiffstats
path: root/asn1.h
diff options
context:
space:
mode:
authorSimon Rettberg2014-03-19 14:35:19 +0100
committerSimon Rettberg2014-03-19 14:35:19 +0100
commite3806b35a212fc846f3a3e4b61090d9e6196cc1d (patch)
tree3e65b810aa62557579a348e44b24e205bd057ba3 /asn1.h
parentWork (diff)
downloadldadp-e3806b35a212fc846f3a3e4b61090d9e6196cc1d.tar.gz
ldadp-e3806b35a212fc846f3a3e4b61090d9e6196cc1d.tar.xz
ldadp-e3806b35a212fc846f3a3e4b61090d9e6196cc1d.zip
Fixed compilation warnings about pointer mismatch on 32bit
Diffstat (limited to 'asn1.h')
-rw-r--r--asn1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1.h b/asn1.h
index 78351b7..6c367dc 100644
--- a/asn1.h
+++ b/asn1.h
@@ -159,8 +159,8 @@ struct string {
};
struct oid {
- size_t l;
- size_t* a;
+ unsigned long l;
+ unsigned long* a;
};
enum x509_oid {