From ecb7641ca7dbcbf756f3ef41ef952dc2d60a6b10 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Tue, 24 Mar 2009 14:44:42 +0000 Subject: [PATCH] from address is const --- apps/shell/shell-rime-ping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/shell/shell-rime-ping.c b/apps/shell/shell-rime-ping.c index d291bf83f..c44370b4c 100644 --- a/apps/shell/shell-rime-ping.c +++ b/apps/shell/shell-rime-ping.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: shell-rime-ping.c,v 1.7 2009/03/12 21:58:20 adamdunkels Exp $ + * $Id: shell-rime-ping.c,v 1.8 2009/03/24 14:44:42 adamdunkels Exp $ */ /** @@ -122,7 +122,7 @@ sent_mesh(struct mesh_conn *c) { } static void -recv_mesh(struct mesh_conn *c, rimeaddr_t *from, u8_t hops) +recv_mesh(struct mesh_conn *c, const rimeaddr_t *from, u8_t hops) { struct rime_ping_msg *ping; char buf[64];