summaryrefslogtreecommitdiff
path: root/net/net_sys_linux.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-27 14:30:33 +0200
committerMiguel <m.i@gmx.at>2018-09-27 14:30:33 +0200
commit8e005d0f13767db538e3d939188d73370db9042d (patch)
treea9b320d6b3da7137348019de70846bdf8aa03246 /net/net_sys_linux.h
parent05d86ed530c05ba3f8648ffd7e67f4a593ae58d8 (diff)
added linux tap support for fool's network stack
Diffstat (limited to 'net/net_sys_linux.h')
-rw-r--r--net/net_sys_linux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/net_sys_linux.h b/net/net_sys_linux.h
index 2f6b62a..d2ef179 100644
--- a/net/net_sys_linux.h
+++ b/net/net_sys_linux.h
@@ -12,6 +12,6 @@
//#define klog(...) log(FOOLOS_LOG_COLOR,__FILE__ ":" S2(__LINE__), 10, LOG_LABEL_INFO __VA_ARGS__)
#define S1(x) #x
#define S2(x) S1(x)
-#define klog(...) printf(__FILE__ ":" S2(__LINE__) __VA_ARGS__)
+#define klog(...) printf(__FILE__ ":" S2(__LINE__) __VA_ARGS__);
#define kbfree(x) free(x);
#define kballoc(x) malloc(x*4096);