mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[partition] Fix typo
This commit is contained in:
parent
313531bc4b
commit
7f1a59f02b
1 changed files with 2 additions and 2 deletions
|
@ -96,14 +96,14 @@ static inline bool
|
|||
isZRam( const Device* device )
|
||||
{
|
||||
const QString path = device->deviceNode();
|
||||
return path.startswith( "/dev/zram" );
|
||||
return path.startsWith( "/dev/zram" );
|
||||
}
|
||||
|
||||
static inline bool
|
||||
isFloppyDrive( const Device* device )
|
||||
{
|
||||
const QString path = device->deviceNode();
|
||||
return path.startswith( "/dev/fd" ) || path.startswith( "/dev/floppy" );
|
||||
return path.startsWith( "/dev/fd" ) || path.startsWith( "/dev/floppy" );
|
||||
}
|
||||
|
||||
static inline QDebug&
|
||||
|
|
Loading…
Add table
Reference in a new issue