summaryrefslogtreecommitdiffstats
path: root/src/nolo.c
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2013-02-25 11:32:28 +0100
committerPali Rohár <pali.rohar@gmail.com>2013-02-25 11:32:28 +0100
commit5ca1e0c899de92d1ebbedb0e0c83efc4c3a3e6a8 (patch)
tree5b5e057e28918e114a2704b71f96fd11c4aaf43b /src/nolo.c
parentb997951f97c0185c3831d5defb500ce410228e99 (diff)
download0xFFFF-5ca1e0c899de92d1ebbedb0e0c83efc4c3a3e6a8.tar.bz2
nolo: Show only first 20 error messages, fix possible infinity loop
Diffstat (limited to 'src/nolo.c')
-rw-r--r--src/nolo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nolo.c b/src/nolo.c
index dfb2034..238336d 100644
--- a/src/nolo.c
+++ b/src/nolo.c
@@ -83,9 +83,9 @@
static void nolo_error_log(struct usb_device_info * dev, int only_clear) {
char buf[2048];
- size_t i;
+ size_t i, count;
- while ( 1 ) {
+ for ( count = 0; count < 20; ++count ) {
memset(buf, 0, sizeof(buf));