1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2292 from BytesGalore/rpl_udp_fix_chan_type

examples/rpl_udp: changed type of variable `chan` to `uint32_t`
This commit is contained in:
Peter Kietzmann 2015-01-13 17:31:31 +01:00
commit 1bffaedba3

View File

@ -44,7 +44,7 @@ void rpl_udp_init(int argc, char **argv)
{
transceiver_command_t tcmd;
msg_t m;
uint8_t chan = RADIO_CHANNEL;
uint32_t chan = RADIO_CHANNEL;
if (argc != 2) {
printf("Usage: %s (r|n|h)\n", argv[0]);