Skip to content
Merged
Prev Previous commit
More printf() --> PRINTF() conversion
  • Loading branch information
henrygab committed Mar 11, 2020
commit 2709813ea62ff57650515b7a7cb1fbcde484f3f8
4 changes: 2 additions & 2 deletions libraries/Bluefruit52Lib/src/utility/bonding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,14 +250,14 @@ void bond_print_list(uint8_t role)
char devname[len];
file.read(devname, len);

printf(" %s : %s (%lu bytes)\n", file.name(), devname, file.size());
PRINTF(" %s : %s (%lu bytes)\n", file.name(), devname, file.size());
}
}

file.close();
}

printf("\n");
PRINTF("\n");

file.close();
dir.close();
Expand Down