1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2025-01-23 01:01:06 +02:00
Werner Almesberger c6fc8190de fw/image.c: fix use of hash functions; make image pointer setup more readable
It was almost impossible NOT to read

next_image = p = image == images[0] ? ...
                      ^^^^
as if it was

next_image = p = image = images[0] ? ...
                      ^^^
2012-06-20 16:51:40 -03:00
..