From: Arvin Schnell Date: Mon, 8 Sep 2025 06:49:17 +0000 (+0200) Subject: - fixed compilation X-Git-Tag: v0.13.0~1^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1052%2Fhead;p=thirdparty%2Fsnapper.git - fixed compilation --- 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;