Update error message to align with int16 range (#1513)

I think this might be a minor typo-- since the conditional checks for `priority` to be in the signed int16 range, the error message should line up with that expected range.
pull/762/head^2
Celine Lee 2 years ago committed by GitHub
parent 1371159f0b
commit 0e996e74c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -297,7 +297,7 @@ int read_sort_file(char *filename, int source, char *source_path[])
} else if((errno == ERANGE) ||
(priority < -32768 || priority > 32767)) {
ERROR("Sort file \"%s\", entry \"%s\" has priority "
"outside range of -32767:32768.\n", filename,
"outside range of -32768:32767.\n", filename,
line_buffer);
goto failed;
}

Loading…
Cancel
Save