src==dst is illegal, failing on ppc64

This commit is contained in:
albert 2009-12-09 09:28:22 +00:00
parent b0210803bf
commit 6154f23d5a

3
top.c
View File

@ -2190,7 +2190,8 @@ static void reframewins (void)
// Value a window's name and make the associated group name.
static void win_names (WIN_t *q, const char *name)
{
sprintf(q->rc.winname, "%.*s", WINNAMSIZ -1, name);
if(q->rc.winname != name) // src==dst is illegal, failing on ppc64
sprintf(q->rc.winname, "%.*s", WINNAMSIZ -1, name);
sprintf(q->grpname, "%d:%.*s", q->winnum, WINNAMSIZ -1, name);
}