mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
neaten
This commit is contained in:
parent
40af1b195d
commit
69cc25593d
1 changed files with 2 additions and 2 deletions
|
|
@ -318,7 +318,7 @@ static lrec_t* lrec_reader_mmap_csvlite_process_single_seps(void* pvstate, void*
|
|||
return NULL;
|
||||
|
||||
for (sllse_t* pe = pheader_fields->phead; pe != NULL; pe = pe->pnext) {
|
||||
if (*pe->value == 0) { // xxx to do: get file-name/line-number context in here.
|
||||
if (*pe->value == 0) {
|
||||
fprintf(stderr, "%s: unacceptable empty CSV key at file \"%s\" line %lld.\n",
|
||||
MLR_GLOBALS.argv0, pctx->filename, pstate->ilno);
|
||||
exit(1);
|
||||
|
|
@ -360,7 +360,7 @@ static lrec_t* lrec_reader_mmap_csvlite_process_multi_seps(void* pvstate, void*
|
|||
return NULL;
|
||||
|
||||
for (sllse_t* pe = pheader_fields->phead; pe != NULL; pe = pe->pnext) {
|
||||
if (*pe->value == 0) { // xxx to do: get file-name/line-number context in here.
|
||||
if (*pe->value == 0) {
|
||||
fprintf(stderr, "%s: unacceptable empty CSV key at file \"%s\" line %lld.\n",
|
||||
MLR_GLOBALS.argv0, pctx->filename, pstate->ilno);
|
||||
exit(1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue