From 2683ab471f21e949fe1b4d10db6dd39c82eeea83 Mon Sep 17 00:00:00 2001 From: Dirk-Willem van Gulik Date: Wed, 11 Jul 2018 14:10:34 +0200 Subject: [PATCH] Quell git warnings about compiled files, make output of the --list-devices command more readable when we have multiple devices inserted. --- software/.gitignore | 10 +++++++++- software/libinfnoise.c | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/software/.gitignore b/software/.gitignore index e5fdc81..e843e3e 100644 --- a/software/.gitignore +++ b/software/.gitignore @@ -1 +1,9 @@ -./infnoise +infnoise +KeccakF-1600-reference.o +daemon.o +healthcheck.o +infnoise +infnoise.o +libinfnoise.a +libinfnoise.o +libinfnoise.so diff --git a/software/libinfnoise.c b/software/libinfnoise.c index e59ea83..e0460c3 100644 --- a/software/libinfnoise.c +++ b/software/libinfnoise.c @@ -287,7 +287,7 @@ bool listUSBDevices(struct ftdi_context *ftdic, char** message) { } // print to stdout - printf("Manufacturer: %s, Description: %s, Serial: %s", manufacturer, description, serial); + printf("Manufacturer: %s, Description: %s, Serial: %s\n", manufacturer, description, serial); curdev = curdev->next; }