aboutsummaryrefslogtreecommitdiffstats
path: root/nrfdfu.c
diff options
context:
space:
mode:
authorroot <root@no.no.james.local>2015-09-01 11:42:26 +0100
committerroot <root@no.no.james.local>2015-09-01 11:42:26 +0100
commit68041c4710fc044c13f4107a74ae26badf611fd8 (patch)
tree7d86fa94ec98e2078f2b67c12d4386bf3e1899c1 /nrfdfu.c
parent7e25356deec3369773e3949fe7336d84c10834c0 (diff)
downloadnrfdfu-68041c4710fc044c13f4107a74ae26badf611fd8.tar.gz
nrfdfu-68041c4710fc044c13f4107a74ae26badf611fd8.tar.bz2
nrfdfu-68041c4710fc044c13f4107a74ae26badf611fd8.zip
works
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;
}