aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikel Olasagasti Uranga <mikel@olasagasti.info>2011-01-07 13:17:37 +0100
committerArjan van de Ven <arjan@linux.intel.com>2011-01-07 08:26:55 -0800
commit36530fdc9bd992b77abb532ce77c0c35979be651 (patch)
tree02d0159c2f24e91ce5c8a4166fd9e8a88dee2faa
parente5182846cff47d46a6c0965c6d18d84cd226cc67 (diff)
downloadpowertop-36530fdc9bd992b77abb532ce77c0c35979be651.tar.gz
Normalize another string
-rw-r--r--tuning/usb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuning/usb.cpp b/tuning/usb.cpp
index 22e3702..16e25d4 100644
--- a/tuning/usb.cpp
+++ b/tuning/usb.cpp
@@ -69,7 +69,7 @@ usb_tunable::usb_tunable(const char *path, const char *name) : tunable("", 0.9,
file.close();
};
if (strlen(vendor) && strlen(product))
- sprintf(desc, _("Autosuspend for USB device %s (%s)"), product, vendor);
+ sprintf(desc, _("Autosuspend for USB device %s [%s]"), product, vendor);
else if (strlen(product))
sprintf(desc, _("Autosuspend for USB device %s [%s]"), product, name);
else if (strlen(vendor))