From a811a9a69436937aa76e7062d5ad6f71b4a20a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Thu, 26 Jun 2014 17:06:13 +0200 Subject: [PATCH] Unbreak build with g++ --- tests/calapmtest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/calapmtest.cpp b/tests/calapmtest.cpp index a1d07a291..a5a3e540f 100644 --- a/tests/calapmtest.cpp +++ b/tests/calapmtest.cpp @@ -162,7 +162,7 @@ void createPartitions( CoreBackend* backend ) qint64 rootStart = table->firstUsable(); qint64 rootEnd = table->lastUsable() - SWAP_SIZE / device->logicalSectorSize(); cout << "sectors for /: " << rootStart << " - " << rootEnd << endl; - FileSystem* fs = new FS::ext4::ext4( rootStart, rootEnd, 0, "Calamares" ); + FileSystem* fs = new FS::ext4( rootStart, rootEnd, 0, "Calamares" ); if ( !createPartition( backend, &report, device.data(), table, fs, PartitionTable::FlagBoot ) ) { @@ -173,7 +173,7 @@ void createPartitions( CoreBackend* backend ) qint64 swapStart = rootEnd + 1; qint64 swapEnd = table->lastUsable(); cout << "sectors for swap: " << swapStart << " - " << swapEnd << endl; - fs = new FS::linuxswap::linuxswap( swapStart, swapEnd, 0, "swap" ); + fs = new FS::linuxswap( swapStart, swapEnd, 0, "swap" ); if ( !createPartition( backend, &report, device.data(), table, fs ) ) { cerr << report.toText() << endl;