Hi,
the problem seems to be the hardcoded latin1 character in wavemon's
output. A workaround would be (and currently runs here):
--- wavemon-0.4.0b.orig/ui.c
+++ wavemon-0.4.0b/ui.c
@@ -99,7 +99,7 @@
for (c = 0; c < steps / (float)(maxv - minv) * (val - minv); c++)
if (c < COLS -2) mvwaddch(win, y, x + c, '=' | A_BOLD |
COLOR_PAIR(col));
- while (x + c < maxx) mvwaddch(win, y, x + c++, 183);
+ while (x + c < maxx) mvwaddch(win, y, x + c++, ' ');
}
void waddthreshold(WINDOW *win, float v, float tv, float minv, float maxv,
char y, char x, char maxx, char *cscale, char rev, char tch)
But a real solution would be to include code that looks up the locale
and then converts the latin1 character 183 to the local equivalent.
Greetings,
Joachim
--
Joachim "nomeata" Breitner
Debian Developer
[EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]