prettify all the code
This commit is contained in:
parent
0f6d0a358b
commit
bfac5fc2a1
2 changed files with 3 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -71,7 +71,7 @@ clean-all: mrproper
|
|||
|
||||
# Formatting
|
||||
pretty-code:
|
||||
clang-format -i src/*.c src/*.h
|
||||
clang-format -i src/*.c src/*.h src/tools/*.c
|
||||
|
||||
# Installing
|
||||
PREFIX = /usr
|
||||
|
|
|
@ -53,9 +53,8 @@ int main( int argc, char** argv ) {
|
|||
else if ( !strcmp( asize, "4M" ) )
|
||||
size = 0x400000;
|
||||
else {
|
||||
fprintf(
|
||||
stderr,
|
||||
"size must be one of 32K, 128K, 256K, 512K, 1M, 2M, or 4M\n" );
|
||||
fprintf( stderr,
|
||||
"size must be one of 32K, 128K, 256K, 512K, 1M, 2M, or 4M\n" );
|
||||
exit( 1 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue