* Empty structures behave differently in C vs. C++ (while they are 0 byte sized

in C, they are 1 byte sized in C++). The empty knlist is what broke the WLAN
  stuff in various ways since I renamed ieee80211_haiku.c to cpp.
* This fixes at least bug #6521.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38838 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-09-28 17:41:05 +00:00
parent 47e9b53fe4
commit 144e57d8d7

View File

@ -7,6 +7,7 @@
struct knlist {
int _dummy;
};
#endif