net_device should come first in order to guaranty it will work together nicely

with C only code. Thanks Hugo!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20547 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-04-04 10:25:35 +00:00
parent 9206bb3779
commit 00006796b4
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
#include <string.h>
struct ethernet_device : DoublyLinkedListLinkImpl<ethernet_device>, net_device {
struct ethernet_device : net_device, DoublyLinkedListLinkImpl<ethernet_device> {
int fd;
uint32 frame_size;
};