use the result of strtoul

This commit is contained in:
christos 2012-03-08 20:43:19 +00:00
parent 9e721b8438
commit b33dfa11bd
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ warning: duplicate key `%s' in version `%s' of RCS file `%s'",
error (1, 0, "\ error (1, 0, "\
unrecognized operation '\\x%x' in %s", unrecognized operation '\\x%x' in %s",
op, rcs->print_path); op, rcs->print_path);
(void) strtoul (cp, (char **) &cp, 10); count = strtoul (cp, (char **) &cp, 10);
if (*cp++ != ' ') if (*cp++ != ' ')
error (1, 0, "space expected in %s revision %s", error (1, 0, "space expected in %s revision %s",
rcs->print_path, vnode->version); rcs->print_path, vnode->version);