return;
} else {
fprintf(stderr,
- "Selector: Missing value in `%s'.\n", string);
+ "selector: Missing value in `%s'.\n", string);
exit(EXIT_FAILURE);
}
}
gotone = 0;
} else {
fprintf(stderr,
- "Selector: Too many values in `%s'.\n", string);
+ "selector: Too many values in `%s'.\n", string);
exit(EXIT_FAILURE);
}
} else {
fprintf(stderr,
- "Selector: Empty value in `%s'.\n", string);
+ "selector: Empty value in `%s'.\n", string);
exit(EXIT_FAILURE);
}
} else {
fprintf(stderr,
- "Selector: Syntax error in `%s'.\n", string);
+ "selector: Syntax error in `%s'.\n", string);
exit(EXIT_FAILURE);
}
s++;
file = fopen(input_filename, "r");
if(!file) {
- fprintf(stderr, "Selector: Can not open `%s'.\n", input_filename);
+ fprintf(stderr, "selector: Can not open `%s'.\n", input_filename);
exit(EXIT_FAILURE);
}
if(eol == BUFFER_SIZE) {
raw_line[BUFFER_SIZE - 1] = '\0';
- fprintf(stderr, "Selector: Line too long (max is %d characters):\n",
+ fprintf(stderr, "selector: Line too long (max is %d characters):\n",
BUFFER_SIZE);
fprintf(stderr, raw_line);
fprintf(stderr, "\n");
struct hash_table_t *hash_table;
if(!isatty(STDIN_FILENO)) {
- fprintf(stderr, "Selector: The standard input is not a tty.\n");
+ fprintf(stderr, "selector: The standard input is not a tty.\n");
exit(EXIT_FAILURE);
}
color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
echo();
endwin();
- fprintf(stderr, "Selector: Color numbers have to be between 0 and %d.\n",
+ fprintf(stderr, "selector: Color numbers have to be between 0 and %d.\n",
COLORS - 1);
exit(EXIT_FAILURE);
}
fprintf(out, "\n");
} else {
fprintf(stderr,
- "Selector: Can not open %s for writing.\n",
+ "selector: Can not open %s for writing.\n",
output_filename);
exit(EXIT_FAILURE);
}