mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
25 lines
675 B
Diff
25 lines
675 B
Diff
From 32c0f3d9b9804e223359b9826db7b7843c2bfafa Mon Sep 17 00:00:00 2001
|
|
From: Bart Ribbers <bribbers@disroot.org>
|
|
Date: Wed, 21 Apr 2021 17:00:39 +0200
|
|
Subject: [PATCH] Include linux/quota.h
|
|
|
|
Otherwise if_dqblk is considered an incomplete type
|
|
---
|
|
src/partitionmanager.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/partitionmanager.cpp b/src/partitionmanager.cpp
|
|
index 6724a31..315f9f6 100644
|
|
--- a/src/partitionmanager.cpp
|
|
+++ b/src/partitionmanager.cpp
|
|
@@ -44,6 +44,7 @@
|
|
#include <mntent.h>
|
|
#include <sys/statvfs.h>
|
|
#include <sys/quota.h>
|
|
+#include <linux/quota.h>
|
|
#include <unistd.h>
|
|
|
|
static const auto userName = QString(qgetenv("USER"));
|
|
--
|
|
2.31.1
|
|
|