We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d58db4 commit 04fbf16Copy full SHA for 04fbf16
src/AudioTools/CoreAudio/AudioMetaData/MetaDataICY.h
@@ -164,7 +164,7 @@ class MetaDataICY : public AbstractMetaData {
164
/// determines the meta data size from the size byte
165
virtual int metaSize(uint8_t metaSize) { return metaSize * 16; }
166
167
- inline bool isAscii(char ch){ return ch >= 0 && ch < 128;}
+ inline bool isAscii(uint8_t ch){ return ch >= 0 && ch < 128;}
168
169
/// Make sure that the result is a valid ASCII string
170
virtual bool isAscii(char* result, int l) {
0 commit comments