Fix de-selecting of drivers in configure by removing non-portable switch to sed.

Silent some compiler and lint warnings.
This commit is contained in:
mmdolze
2009-11-01 08:32:50 +00:00
parent b197729ad8
commit 362aa05fd2
9 changed files with 23 additions and 10 deletions
+2 -2
View File
@@ -347,11 +347,11 @@ render_vbar(Widget *w, int left, int top, int right, int bottom)
static int
render_title(Widget *w, int left, int top, int right, int bottom, long timer)
{
int vis_width = right - left;
debug(RPT_DEBUG, "%s(w=%p, left=%d, top=%d, right=%d, bottom=%d, timer=%ld)",
__FUNCTION__, w, left, top, right, bottom, timer);
int vis_width = right - left;
if ((w != NULL) && (w->text != NULL) && (vis_width >= 8)) {
char str[BUFSIZE];
int length = strlen(w->text);