diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-15 22:19:52 +0200 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2013-06-15 22:27:34 +0200 |
| commit | 7c7fa369186536adaf9ff35ec356525b5c5a8379 (patch) | |
| tree | bc70e26ffcc48a7d0a0a40e7c33e0cd48bd265fa /utils/imxtools/sbtools/elftosb.c | |
| parent | 58e27b9fa1e9ea058eb5161f140e0909c4821c92 (diff) | |
| download | rockbox-7c7fa369186536adaf9ff35ec356525b5c5a8379.zip rockbox-7c7fa369186536adaf9ff35ec356525b5c5a8379.tar.gz rockbox-7c7fa369186536adaf9ff35ec356525b5c5a8379.tar.bz2 rockbox-7c7fa369186536adaf9ff35ec356525b5c5a8379.tar.xz | |
sbtools,mkximboot: fix whitespace
Change-Id: I8d8adb783707172d1aaef302366c240310350ed8
Diffstat (limited to 'utils/imxtools/sbtools/elftosb.c')
| -rw-r--r-- | utils/imxtools/sbtools/elftosb.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/utils/imxtools/sbtools/elftosb.c b/utils/imxtools/sbtools/elftosb.c index 22a5b58..fd44693 100644 --- a/utils/imxtools/sbtools/elftosb.c +++ b/utils/imxtools/sbtools/elftosb.c @@ -18,7 +18,7 @@ * KIND, either express or implied. * ****************************************************************************/ - + #define _ISOC99_SOURCE #define _POSIX_C_SOURCE 200809L /* for strdup */ #include <stdio.h> @@ -144,7 +144,7 @@ static struct sb_file_t *apply_cmd_file(struct cmd_file_t *cmd_file) db_generate_default_sb_version(&sb->product_ver); db_generate_default_sb_version(&sb->component_ver); - + if(g_debug) printf("Applying command file...\n"); /* count sections */ @@ -246,7 +246,7 @@ static struct sb_file_t *apply_cmd_file(struct cmd_file_t *cmd_file) } else bug("die\n"); - + cinst = cinst->next; } @@ -308,7 +308,7 @@ static struct sb_file_t *apply_cmd_file(struct cmd_file_t *cmd_file) } else bug("die\n"); - + cinst = cinst->next; } } @@ -347,7 +347,7 @@ int main(int argc, char **argv) struct crypto_key_t crypto_iv; real_key.method = CRYPTO_NONE; crypto_iv.method = CRYPTO_NONE; - + while(1) { static struct option long_options[] = @@ -452,10 +452,10 @@ int main(int argc, char **argv) sb_file->first_boot_sec_id = sb_file->sections[0].identifier; sb_file->flags = 0; sb_file->minor_version = 1; - + sb_write_file(sb_file, output_filename); sb_free(sb_file); clear_keys(); - + return 0; } |