HaikuArchives / ArmyKnife

ArmyKnife is an application that lets you edit the metadata of audio files
MIT License
6 stars 14 forks source link

Fix build on x86 #30

Closed TwoFX closed 8 years ago

TwoFX commented 8 years ago

There is one more issue which only produces a warning regarding using string literals as char* in the genre list, however fixing this seems rather involved, having to change signatures across several files. There is also a BList involved, which does interesting things with const void*/void* which do not seem to go well with this change, so you essentially have to add another layer of pointer indirection, but I couldn't convince the type checker to let me do this last night.

waddlesplash commented 8 years ago

Can you switch from using a BList to a BObjectList?

TwoFX commented 8 years ago

Good idea, the code now compiles without warnings on both architectures.

waddlesplash commented 8 years ago

Thanks!