bootstrap, scripts: detabbed

This commit is contained in:
Matthias Rustler 2021-03-06 18:43:16 +01:00 committed by deadwood
parent 82961605e0
commit cd782bc837
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ static char *check_header(struct elfheader *eh)
* Get the memory for chunk and load it
*/
static void *load_hunk(void *file, struct sheader *sh, void *addr, struct KernelBSS_t **bss_tracker)
{
{
uintptr_t align;
/* empty chunk? Who cares :) */

View File

@ -8,9 +8,9 @@
int main (int argc, char ** argv)
{
if (argc==1)
puts ("0");
puts ("0");
else
printf ("%d\n", strtol (argv[1], NULL, 0));
printf ("%d\n", strtol (argv[1], NULL, 0));
return 0;
} /* main */