aboutsummaryrefslogtreecommitdiffstats
path: root/nrfdfu.c
diff options
context:
space:
mode:
Diffstat (limited to 'nrfdfu.c')
-rw-r--r--nrfdfu.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/nrfdfu.c b/nrfdfu.c
index ab58464..3f9316c 100644
--- a/nrfdfu.c
+++ b/nrfdfu.c
@@ -65,11 +65,12 @@ main (int argc, char *argv[])
bin_size = read_file_from_zip (zip, m->bin_file, &bin);
- printf ("%u bytes init_data, %u bytes firmware\n",(unsigned) dat_size, (unsigned) bin_size);
+ printf ("%u bytes init_data, %u bytes firmware\n", (unsigned) dat_size,
+ (unsigned) bin_size);
dfu (bdaddr, m->type, m->dfu_version, dat, dat_size, bin, bin_size);
-return EXIT_SUCCESS;
+ return EXIT_SUCCESS;
}