Commit feae8def authored by Lev Walkin's avatar Lev Walkin

arguments matching

parent 04c8ef07
...@@ -328,8 +328,8 @@ process_line(const char *fname, char *line, int lineno) { ...@@ -328,8 +328,8 @@ process_line(const char *fname, char *line, int lineno) {
} }
if(ret != tl_len) { if(ret != tl_len) {
fprintf(stderr, "%s: Cannot encode TL at line %d " fprintf(stderr, "%s: Cannot encode TL at line %d "
"in the given number of bytes (%d!=%d)\n", "in the given number of bytes (%ld!=%ld)\n",
fname, lineno, ret, tl_len); fname, lineno, (long)ret, (long)tl_len);
exit(EX_DATAERR); exit(EX_DATAERR);
} }
if(constr) *buf |= 0x20; /* Enable "constructed" bit */ if(constr) *buf |= 0x20; /* Enable "constructed" bit */
......
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