summaryrefslogtreecommitdiffstats
path: root/src/callback.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/callback.c')
-rw-r--r--src/callback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callback.c b/src/callback.c
index 1325bea..1b18b2a 100644
--- a/src/callback.c
+++ b/src/callback.c
@@ -65,7 +65,7 @@ static mnl_cb_t default_cb_array[NLMSG_MIN_TYPE] = {
*
* This function propagates the callback return value.
*/
-int mnl_cb_run2(const char *buf, unsigned int numbytes, unsigned int seq,
+int mnl_cb_run2(const char *buf, int numbytes, unsigned int seq,
mnl_cb_t cb_data, void *data,
mnl_cb_t *cb_ctl_array, unsigned int cb_ctl_array_len)
{
@@ -121,7 +121,7 @@ out:
*
* This function propagates the callback return value.
*/
-int mnl_cb_run(const char *buf, unsigned int numbytes, unsigned int seq,
+int mnl_cb_run(const char *buf, int numbytes, unsigned int seq,
mnl_cb_t cb_data, void *data)
{
return mnl_cb_run2(buf, numbytes, seq, cb_data, data, NULL, 0);