From 11a69342cf39e512074b2f42c6b4c71a6015d7a1 Mon Sep 17 00:00:00 2001 From: Panky55 <66234114+Panky55@users.noreply.github.com> Date: Sun, 27 Oct 2024 12:26:55 -0700 Subject: [PATCH] Fix broken import in pongo_helper.c Related to #1 Remove unnecessary header file inclusion in `src/pongo/pongo_helper.c`. * Remove the line `#include ` at line 5 to fix compilation error on Linux. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/alfiecg24/Achilles/issues/1?shareId=XXXX-XXXX-XXXX-XXXX). --- src/pongo/pongo_helper.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pongo/pongo_helper.c b/src/pongo/pongo_helper.c index 0a2bb2b..8f4b11f 100644 --- a/src/pongo/pongo_helper.c +++ b/src/pongo/pongo_helper.c @@ -2,7 +2,6 @@ #include #include #include -#include extern struct AchillesArgs args; @@ -258,4 +257,4 @@ bool pongo_jailbreak(usb_handle_t *handle) { // Done return true; -} \ No newline at end of file +}