dect
/
libdect
Archived
13
0
Fork 0

raw: fix compile error

Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
Patrick McHardy 2010-10-18 11:08:02 +02:00
parent d562840fbb
commit a53a5440f9
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ extern "C" {
struct dect_raw_ops {
void (*raw_rcv)(struct dect_handle *dh, struct dect_fd *dfd,
uint8_t slot, struct dect_msg_buf *mb);
struct dect_msg_buf *mb);
};
extern struct dect_fd *dect_raw_socket(struct dect_handle *dh);

View File

@ -137,7 +137,7 @@ static void dect_raw_event(struct dect_handle *dh, struct dect_fd *dfd,
mb->mfn = aux->mfn;
mb->frame = aux->frame;
mb->slot = slot;
mb->slot = aux->slot;
dh->ops->raw_ops->raw_rcv(dh, dfd, mb);
}