From c1e12b922d2c26317ca2d7c338bde23857faf0e0 Mon Sep 17 00:00:00 2001 From: Arvin Schnell Date: Mon, 8 Sep 2025 08:49:17 +0200 Subject: [PATCH] - fixed compilation --- snapper/Ext4.cc | 2 +- snapper/Ext4.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/snapper/Ext4.cc b/snapper/Ext4.cc index 7fe4a68a..53c0c4fe 100644 --- a/snapper/Ext4.cc +++ b/snapper/Ext4.cc @@ -255,7 +255,7 @@ namespace snapper void - Ext4::setSnapshotReadOnly(unsigned int num, bool read_only) const + Ext4::setSnapshotReadOnly(unsigned int num, bool read_only, Plugins::Report& report) const { // TODO } diff --git a/snapper/Ext4.h b/snapper/Ext4.h index 62ed67e0..eb377f6c 100644 --- a/snapper/Ext4.h +++ b/snapper/Ext4.h @@ -59,7 +59,7 @@ namespace snapper virtual void umountSnapshot(unsigned int num) const override; virtual bool isSnapshotReadOnly(unsigned int num) const override; - virtual void setSnapshotReadOnly(unsigned int num, bool read_only) const override; + virtual void setSnapshotReadOnly(unsigned int num, bool read_only, Plugins::Report& report) const override; virtual bool checkSnapshot(unsigned int num) const override; -- 2.47.3