Commit c2c8e40ff219f78779fc2743f0c1ffbabe159e37
authorDoug Szumski <d.s.szumski@gmail.com>
Wed, 20 Jun 2018 19:57:33 +0000 (20:57 +0100)
committerDoug Szumski <d.s.szumski@gmail.com>
Wed, 20 Jun 2018 20:28:50 +0000 (21:28 +0100)
tree897dc6732b8c77b9fdd645df13b260826871e231
parent6d9c6e1489b79239c6b6ee6d2893468b74d737d8
Message:
Fix GCC 8 warning for input strings

As described in issue #293 GCC 8 fails the build in the current
configuration on warnings like:

sim/run_avr.c:193:4: error: ‘strncpy’ specified bound 128
equals destination size [-Werror=stringop-truncation]
    strncpy(f.tracename, argv[++pi], sizeof(f.tracename));

This isn't the only solution, but it get's the build working.
simavr/sim/run_avr.c