Remove spaces/tabs from ends of lines.

This commit is contained in:
Neil Brown 2007-12-14 20:13:43 +11:00
parent 08e43379e5
commit aba69144fd
23 changed files with 118 additions and 123 deletions

View File

@ -273,5 +273,4 @@ int Build(char *mddev, int mdfd, int chunk, int level, int layout,
else
ioctl(mdfd, STOP_MD, 0);
return 1;
}

View File

@ -128,4 +128,3 @@ int Query(char *dev)
return 0;
}

3
util.c
View File

@ -99,7 +99,6 @@ int parse_uuid(char *str, int uuid[4])
if (hit == 32)
return 1;
return 0;
}
@ -132,7 +131,6 @@ int md_get_version(int fd)
return -1;
}
int get_linux_version()
{
struct utsname name;
@ -593,7 +591,6 @@ char *human_size_brief(long long bytes)
{
static char buf[30];
if (bytes < 5000*1024)
snprintf(buf, sizeof(buf), "%ld.%02ldKiB",
(long)(bytes>>10), (long)(((bytes&1023)*100+512)/1024)