markusfisch / PieDock

A dock but in shape of a pie menu
http://markusfisch.de/PieDock
MIT License
19 stars 7 forks source link

Use explicit casts to car to fix building with GCC-6 #12

Closed ghost closed 7 years ago

ghost commented 7 years ago

Compiling with GCC-6 fails with messages like:

error: narrowing conversion of ‘137’ from ‘int’ to ‘char’ inside { } [-Wnarrowing]

GCC-6 doesn't allow implicit narrowing conversions. Explicitly cast from int to char in fallbackPng[] to enable building with GCC-6.

markusfisch commented 7 years ago

Merged. Thanks a lot! Wasn't aware of this.