int -> unsigned int

This commit is contained in:
leitner
2005-07-08 20:50:53 +00:00
parent 7b412d42e4
commit 86bcdeb915
19 changed files with 37 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
#include <asn1.h>
#include <ldap.h>
int scan_ldapstring(const char* src,const char* max,struct string* s) {
unsigned int scan_ldapstring(const char* src,const char* max,struct string* s) {
return scan_asn1STRING(src,max,&s->s,&s->l);
}