Fix compile errors
This commit is contained in:
parent
01253f050a
commit
34bb18448c
@ -196,7 +196,7 @@ void sepol_magisk_rules() {
|
||||
// Allow update_engine/addon.d-v2 to run permissive on all ROMs
|
||||
sepol_permissive("update_engine");
|
||||
|
||||
#ifdef MAGISK_DEBUG
|
||||
#if 0
|
||||
// Remove all dontaudit in debug mode
|
||||
strip_dontaudit();
|
||||
#endif
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <mntent.h>
|
||||
#include <functional>
|
||||
#include <string_view>
|
||||
|
||||
|
@ -27,8 +27,7 @@ public:
|
||||
// Delegates all operations to the base FILE pointer
|
||||
class filter_stream : public stream {
|
||||
public:
|
||||
filter_stream() = default;
|
||||
filter_stream(sFILE &&fp) : fp(std::move(fp)) {}
|
||||
filter_stream(sFILE &&fp = make_sFILE()) : fp(std::move(fp)) {}
|
||||
|
||||
int read(void *buf, size_t len) override;
|
||||
int write(const void *buf, size_t len) override;
|
||||
|
Loading…
Reference in New Issue
Block a user