redundant return to appease the compiler. all hail mighty compiler

This commit is contained in:
ari melody 2024-02-12 17:49:50 +00:00
parent 6204419407
commit 0bebd05e0e
Signed by: ari
GPG key ID: CF99829C92678188

2
main.c
View file

@ -36,6 +36,8 @@ char* get_shorthand(unsigned long long int size) {
snprintf(buffer, 12, "%.2f KiB", (float) size / KiB); snprintf(buffer, 12, "%.2f KiB", (float) size / KiB);
return buffer; return buffer;
} }
return 0;
} }
unsigned long long int adjust_by_denomination(unsigned long long int size, char denomination) { unsigned long long int adjust_by_denomination(unsigned long long int size, char denomination) {