From dd5c876034fd11e8de8a4f063b331998775c74f7 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Sat, 19 Nov 2022 01:48:21 +0100 Subject: [PATCH] cpu/native: replace RIOT_FILE_RELATIVE with __FILE__ --- cpu/native/netdev_tap/netdev_tap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/netdev_tap/netdev_tap.c b/cpu/native/netdev_tap/netdev_tap.c index 33d02305b2ce..3cd51a4dbeab 100644 --- a/cpu/native/netdev_tap/netdev_tap.c +++ b/cpu/native/netdev_tap/netdev_tap.c @@ -330,7 +330,7 @@ static void _tap_isr(int fd, void *arg) { static int _init(netdev_t *netdev) { - DEBUG("%s:%s:%u\n", RIOT_FILE_RELATIVE, __func__, __LINE__); + DEBUG("%s:%s:%u\n", __FILE__, __func__, __LINE__); netdev_tap_t *dev = container_of(netdev, netdev_tap_t, netdev);