summaryrefslogtreecommitdiff
path: root/Userland/lspci.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
committerAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
commitadabcf24ec079d38f467dea690ffcdfecfd03d68 (patch)
tree7043f6d545c198e4e6cd1ec259f70c4987a8a20e /Userland/lspci.cpp
parent9ffdb7111183aa9eb7e107a38d99e79c81444760 (diff)
downloadserenity-adabcf24ec079d38f467dea690ffcdfecfd03d68.zip
Everywhere: Add missing <AK/ByteBuffer.h> includes
All of these files were getting ByteBuffer.h from someone else and then using it. Let's include it explicitly.
Diffstat (limited to 'Userland/lspci.cpp')
-rw-r--r--Userland/lspci.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/lspci.cpp b/Userland/lspci.cpp
index 1b16612a93..7f754977d6 100644
--- a/Userland/lspci.cpp
+++ b/Userland/lspci.cpp
@@ -24,6 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <AK/ByteBuffer.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/String.h>