extern bool interactive_option;
/* If nonzero, extract only Nth occurrence of each named file */
-extern uintmax_t occurrence_option;
+extern intmax_t occurrence_option;
enum old_files
{
idx_t change_dir; /* Number of the directory to change to.
Set with the -C option. */
- uintmax_t found_count; /* number of times a matching file has
+ intmax_t found_count; /* number of times a matching file has
been found */
/* The following members are used for incremental dumps only,
bool incremental_option;
const char *info_script_option;
bool interactive_option;
-uintmax_t occurrence_option;
+intmax_t occurrence_option;
enum old_files old_files_option;
bool keep_directory_symlink_option;
const char *listed_incremental_option;
else
{
char *end;
- occurrence_option = stoint (arg, &end, NULL, 0, UINTMAX_MAX);
+ occurrence_option = stoint (arg, &end, NULL, 0, INTMAX_MAX);
if (*end)
paxfatal (0, "%s: %s", quotearg_colon (arg), _("Invalid number"));
}