Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
extlinux/main.c: space change
Spaces, ASCII 0x20, have been
* moved
* inserted
* deleted

Signed-off-by: Geert Stappers <stappers@stappers.nl>
  • Loading branch information
Ady authored and geneC committed Nov 15, 2015
1 parent 8d2aa9f commit e0be4d8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions extlinux/main.c
Expand Up @@ -393,11 +393,11 @@ int install_bootblock(int fd, const char *device)
if (sb5.sb_magicnum == *(u32 *)XFS_SB_MAGIC) {
if (be32_to_cpu(sb5.sb_blocksize) != XFS_SUPPORTED_BLOCKSIZE) {
fprintf(stderr,
"You need to have 4 KiB filesystem block size for "
" being able to install Syslinux in your XFS "
"partition (because there is no enough space in MBR to "
"determine where Syslinux bootsector can be installed "
"regardless the filesystem block size)\n");
"You need to have 4 KiB filesystem block size for"
" being able to install Syslinux in your XFS"
" partition (because there is not enough space in MBR to"
" determine where Syslinux bootsector can be installed"
" regardless of the filesystem block size)\n");
return 1;
}

Expand All @@ -420,8 +420,8 @@ int install_bootblock(int fd, const char *device)

if (!ok) {
fprintf(stderr,
"no fat, ntfs, ext2/3/4, btrfs, xfs "
"or ufs1/2 superblock found on %s\n",
"no fat, ntfs, ext2/3/4, btrfs, xfs"
" or ufs1/2 superblock found on %s\n",
device);
return 1;
}
Expand Down Expand Up @@ -754,7 +754,7 @@ static int xfs_install_file(const char *path, int devfd, struct stat *rst)
* * test if path is a subvolume:
* * this function return
* * 0-> path exists but it is not a subvolume
* * 1-> path exists and it is a subvolume
* * 1-> path exists and it is a subvolume
* * -1 -> path is unaccessible
* */
static int test_issubvolume(char *path)
Expand Down Expand Up @@ -1388,8 +1388,8 @@ static int open_device(const char *path, struct stat *st, char **_devname)

if (!fs_type) {
fprintf(stderr,
"%s: not a fat, ntfs, ext2/3/4, btrfs, xfs or"
"ufs1/2 filesystem: %s\n",
"%s: not a fat, ntfs, ext2/3/4, btrfs, xfs"
" or ufs1/2 filesystem: %s\n",
program, path);
return -1;
}
Expand Down

0 comments on commit e0be4d8

Please sign in to comment.