1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fixed small bug

This commit is contained in:
Steffen Vogel 2015-03-31 14:36:30 +02:00
parent b657d795d6
commit 95f91d82e0

View file

@ -11,6 +11,7 @@
#include "utils.h"
/* Node types */
#include "file.h"
#include "socket.h"
#include "gtfpga.h"
#ifdef ENABLE_OPAL_ASYNC
@ -29,7 +30,7 @@ static const struct node_vtable vtables[] = {
#ifdef ENABLE_OPAL_ASYNC
VTABLE(OPAL_ASYNC, "opal", opal),
#endif
VTABLE(LOG_FILE), "file", file),
VTABLE(LOG_FILE, "file", file),
VTABLE(IEEE_802_3, "ieee802.3", socket),
VTABLE(IP, "ip", socket),
VTABLE(UDP, "udp", socket),