Skip to content

Commit

Permalink
cpu/native: replace RIOT_FILE_RELATIVE with __FILE__
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Nov 19, 2022
1 parent 7e91d91 commit dd5c876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu/native/netdev_tap/netdev_tap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit dd5c876

Please sign in to comment.