Skip to content

Commit 04fbf16

Browse files
committed
MetaDataICY: isAscii to uint8_t
1 parent 6d58db4 commit 04fbf16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AudioTools/CoreAudio/AudioMetaData/MetaDataICY.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class MetaDataICY : public AbstractMetaData {
164164
/// determines the meta data size from the size byte
165165
virtual int metaSize(uint8_t metaSize) { return metaSize * 16; }
166166

167-
inline bool isAscii(char ch){ return ch >= 0 && ch < 128;}
167+
inline bool isAscii(uint8_t ch){ return ch >= 0 && ch < 128;}
168168

169169
/// Make sure that the result is a valid ASCII string
170170
virtual bool isAscii(char* result, int l) {

0 commit comments

Comments
 (0)