Commit 07721d57 authored by Lev Walkin's avatar Lev Walkin

*** empty log message ***

parent 7512b7f5
......@@ -33,7 +33,7 @@ main(int ac, char **av) {
enum asn1p_flags parser_flags = A1P_NOFLAGS;
enum asn1f_flags fixer_flags = A1F_NOFLAGS;
const char *filename;
int len;
size_t len;
int ret;
/*
......@@ -75,7 +75,7 @@ main(int ac, char **av) {
while((dp = readdir(dir))) {
filename = dp->d_name;
#endif /* WIN32 */
int len = strlen(filename);
len = strlen(filename);
if(len && strcmp(filename + len - 5, ".asn1") == 0) {
ret = check(filename, parser_flags,fixer_flags);
if(ret) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment