summaryrefslogtreecommitdiff
path: root/dix
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-02-01 15:16:01 +1100
committerAdam Jackson <ajax@redhat.com>2008-02-14 07:51:33 +1100
commitb740b865e4c156a40adc6b63fcf215156fc9151a (patch)
tree9e4697dcee8f5c76f394e39d468963dbd07dfad2 /dix
parent89d3249c3e7611b22414bc84b10ca60aab4b9a77 (diff)
Silence an error message in ConfigureWindow that never happens.
Diffstat (limited to 'dix')
-rw-r--r--dix/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/window.c b/dix/window.c
index 1ccf12603..b896ef742 100644
--- a/dix/window.c
+++ b/dix/window.c
@@ -2155,7 +2155,7 @@ WhereDoIGoInTheStack(
return pWin->nextSib;
default:
{
- ErrorF("Internal error in ConfigureWindow, smode == %d\n",smode );
+ /* should never happen; make something up. */
return pWin->nextSib;
}
}