Find the overflow bug in this storage estimate.
Java
static long estimatedBytes(int fileCount, int averageBytes) {
return fileCount * averageBytes;
}
static long estimatedBytes(int fileCount, int averageBytes) {
return fileCount * averageBytes;
}