aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattia Dongili <malattia@linux.it>2006-06-01 20:04:01 +0200
committerDominik Brodowski <linux@dominikbrodowski.net>2006-06-01 20:22:40 +0200
commit00f03c5a5f491e9a514952e1162b63f86d142421 (patch)
treeb2d8b7f44744d5ede58353bfd06ca5a77566d1ff
parent3838a8bdab62a1febc2770ea81a1ec44bcb0c7b7 (diff)
downloadcpufrequtils-00f03c5a5f491e9a514952e1162b63f86d142421.tar.gz
[PATCH] pcmcia: add missing newline to error message
Add a missing newline to a cpufreq-set error message. Signed-off-by: Mattia Dongili <malattia@linux.it> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
-rw-r--r--po/de.po4
-rw-r--r--po/fr.po4
-rw-r--r--po/it.po4
-rw-r--r--utils/set.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/po/de.po b/po/de.po
index b429d11..0b67971 100644
--- a/po/de.po
+++ b/po/de.po
@@ -340,8 +340,8 @@ msgstr ""
#: utils/set.c:282
#, c-format
-msgid "wrong, unknown or unhandled CPU?"
-msgstr "unbekannte oder nicht regelbare CPU"
+msgid "wrong, unknown or unhandled CPU?\n"
+msgstr "unbekannte oder nicht regelbare CPU\n"
#: utils/set.c:306
#, c-format
diff --git a/po/fr.po b/po/fr.po
index be8829b..c0e7901 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -329,8 +329,8 @@ msgstr ""
#: utils/set.c:282
#, c-format
-msgid "wrong, unknown or unhandled CPU?"
-msgstr "CPU inconnu ou non supporté ?"
+msgid "wrong, unknown or unhandled CPU?\n"
+msgstr "CPU inconnu ou non supporté ?\n"
#: utils/set.c:306
#, c-format
diff --git a/po/it.po b/po/it.po
index 4fa6fbb..ffe49bd 100644
--- a/po/it.po
+++ b/po/it.po
@@ -337,8 +337,8 @@ msgstr ""
#: utils/set.c:282
#, c-format
-msgid "wrong, unknown or unhandled CPU?"
-msgstr "CPU errata, sconosciuta o non gestita?"
+msgid "wrong, unknown or unhandled CPU?\n"
+msgstr "CPU errata, sconosciuta o non gestita?\n"
#: utils/set.c:306
#, c-format
diff --git a/utils/set.c b/utils/set.c
index 5319ef8..4bea7a6 100644
--- a/utils/set.c
+++ b/utils/set.c
@@ -279,7 +279,7 @@ int main(int argc, char **argv) {
struct cpufreq_policy *cur_pol = cpufreq_get_policy(cpu);
struct cpufreq_policy new_pol;
if (!cur_pol) {
- printf(gettext ("wrong, unknown or unhandled CPU?"));
+ printf(gettext ("wrong, unknown or unhandled CPU?\n"));
return -EINVAL;
}