change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers reduce 100 bytes don't care in sum
This commit is contained in:
parent
6a60c821a8
commit
39a841cecf
16 changed files with 33 additions and 49 deletions
|
@ -208,7 +208,7 @@ static void add_linenumbers(void) {
|
|||
|
||||
for (i = 0; i <= num_flines; i++) {
|
||||
safe_strncpy(current_line, flines[i], 256);
|
||||
bb_xasprintf(&flines[i],"%5d %s", i + 1, current_line);
|
||||
flines[i] = bb_xasprintf("%5d %s", i + 1, current_line);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -618,11 +618,8 @@ static void colon_process(void) {
|
|||
|
||||
static char *insert_highlights (char *line, int start, int end) {
|
||||
|
||||
char *new_line;
|
||||
|
||||
bb_xasprintf(&new_line, "%.*s%s%.*s%s%s", start, line, HIGHLIGHT,
|
||||
return bb_xasprintf("%.*s%s%.*s%s%s", start, line, HIGHLIGHT,
|
||||
end - start, line + start, NORMAL, line + end);
|
||||
return new_line;
|
||||
}
|
||||
|
||||
static char *process_regex_on_line(char *line, regex_t *pattern) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue