From: Christian Lamparter Date: Thu, 13 Jan 2011 12:09:05 +0000 (+0100) Subject: carlu: fix conflicting function declaration types X-Git-Tag: 1.9.3~25 X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=9d340a7fc1498ea4cc20592f218e3958abd60212;hp=1d155c5cc961835941f119e5b8baace1d54b09de carlu: fix conflicting function declaration types rx.c:52: error: conflicting types for ‘carlu_handle_command’ carlu.h:143: note: previous declaration of ‘carlu_handle_command’ was here Signed-off-by: Christian Lamparter --- diff --git a/tools/carlu/src/carlu.h b/tools/carlu/src/carlu.h index 8849a8b..96219f5 100644 --- a/tools/carlu/src/carlu.h +++ b/tools/carlu/src/carlu.h @@ -140,7 +140,7 @@ void carlu_rx(struct carlu *ar, struct frame *frame); int carlu_tx(struct carlu *ar, struct frame *frame); void carlu_tx_feedback(struct carlu *ar, struct carl9170_rsp *cmd); -void carlu_handle_command(struct carlu *ar, void *buf, size_t len); +void carlu_handle_command(struct carlu *ar, void *buf, unsigned int len); struct frame *carlu_alloc_frame(struct carlu *ar, unsigned int size); void carlu_free_frame(struct carlu *ar, struct frame *frame);