From 174adcb8f2796f0c2e24c12a9f8dd87a66e5310d Mon Sep 17 00:00:00 2001
From: Anjan Chanda <anjan.chanda@iopsys.eu>
Date: Thu, 23 Mar 2023 11:29:11 +0100
Subject: [PATCH] fix warns

---
 ethernet.c       | 2 +-
 test_stub/stub.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ethernet.c b/ethernet.c
index 3be205f..fb73ec3 100644
--- a/ethernet.c
+++ b/ethernet.c
@@ -34,7 +34,7 @@
 #include <linux/mii.h>
 
 #include <net/if.h>
-#include "easy.h"
+#include <easy/easy.h>
 
 #include "ethernet.h"
 
diff --git a/test_stub/stub.c b/test_stub/stub.c
index e244500..5ce2d7c 100644
--- a/test_stub/stub.c
+++ b/test_stub/stub.c
@@ -33,7 +33,7 @@
 #include <unistd.h>
 #include <stdlib.h>
 
-#include "easy.h"
+#include <easy/easy.h>
 #include "ethernet.h"
 
 #include "stub.h"
@@ -43,7 +43,7 @@ int test_eth_set_link_settings(const char *name, struct eth_link link)
 	return 0;
 }
 
-int test_eth_get_link_settings(const char *name, struct eth_link link)
+int test_eth_get_link_settings(const char *name, struct eth_link *link)
 {
 	return 0;
 }
-- 
GitLab