diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-02-17 14:34:57 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2010-03-16 16:55:04 +0100 |
commit | 4491e0f3984c81ebe12027de2f3d185953f09bde (patch) | |
tree | edd3cf6b03f5ac9f6d1bd2eddfeac65a8b5a0c22 /usb-linux.c | |
parent | 0aef4261ac0ec9089ade0e3a92f986cb4ba7317e (diff) |
usb: Remove disabled monitor_printf() in usb_read_file()
The monitor_printf() reports failure. Printing is wrong, because the
caller tries various arguments, and expects the function to fail for
some or all.
Disabled since commit 26a9e82a. Remove it.
Diffstat (limited to 'usb-linux.c')
-rw-r--r-- | usb-linux.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/usb-linux.c b/usb-linux.c index a9c15c6d1d..d0d7cff496 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1188,9 +1188,6 @@ static int usb_host_scan_dev(void *opaque, USBScanFunc *func) */ static int usb_host_read_file(char *line, size_t line_size, const char *device_file, const char *device_name) { -#if 0 - Monitor *mon = cur_mon; -#endif FILE *f; int ret = 0; char filename[PATH_MAX]; @@ -1201,11 +1198,6 @@ static int usb_host_read_file(char *line, size_t line_size, const char *device_f if (f) { ret = fgets(line, line_size, f) != NULL; fclose(f); -#if 0 - } else { - if (mon) - monitor_printf(mon, "husb: could not open %s\n", filename); -#endif } return ret; |