1
0
Fork 0
mirror of https://github.com/vbatts/bvi.git synced 2025-08-02 15:40:28 +00:00

cleanup mixed use of tabs and spaces

still isn't 100%, but is progress

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2025-03-02 11:42:21 -05:00
parent 92a88a4b4b
commit f62d2aa929
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
14 changed files with 176 additions and 176 deletions

12
bvi.c
View file

@ -756,13 +756,13 @@ calc_size(arg)
switch (*poi) {
case 'k':
case 'K': val *= 1024;
break;
break;
case 'm':
case 'M': val *= 1048576;
break;
break;
case 'g':
case 'G': val *= 1024*1024*1024LL;
break;
case 'G': val *= 1024*1024*1024LL;
break;
case '\0': break;
default: usage();
}
@ -1051,9 +1051,9 @@ range(ch)
}
end_addr = markbuf[mark - 'a'];
if (end_addr == NULL) {
beep();
beep();
return 0;
}
}
if (end_addr < current) {
return(end_addr - current);
} else {