From 7dd1786b13853f7107b47dd2dc620d4a1eda375d Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 10 Aug 2021 02:13:00 +0100 Subject: [PATCH] Kernel/USB: Use "Pipe" instead of "USBPipe" in USBEndpoint This wasn't caught before because nothing was including this header. --- Kernel/Bus/USB/USBEndpoint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Bus/USB/USBEndpoint.h b/Kernel/Bus/USB/USBEndpoint.h index 3ef61419ed..a8e7eba762 100644 --- a/Kernel/Bus/USB/USBEndpoint.h +++ b/Kernel/Bus/USB/USBEndpoint.h @@ -56,7 +56,7 @@ private: USBEndpoint(/* TODO */); USBEndpointDescriptor m_descriptor; - USBPipe m_pipe; + Pipe m_pipe; }; }