JorenSix / Panako

The Panako acoustic fingerprinting system.
GNU Affero General Public License v3.0
185 stars 38 forks source link

Fix string format specifier in error message for checkFileSize #46

Closed vargusz closed 6 months ago

vargusz commented 6 months ago

Fix string format specifier in error message for FileUtils.checkFileSize()

The %l conversion specifier is not applicable for Java integral values, it will throw IllegalFormatException, so %d should be used instead. See https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Formatter.html#syntax

JorenSix commented 6 months ago

Thanks for the fix, very much appreciated!