diff options
author | Brian <[email protected]> | 2006-12-13 08:30:26 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2006-12-13 08:30:26 -0700 |
commit | 73eee2402eec80b745141689ecff2d4ecf36035e (patch) | |
tree | 7f2e3c5e11fe42ca3611a1c0df8211e38b8dec1c /progs/xdemos/manywin.c | |
parent | 5b35132b41427798e02a66a8e39583fffbe9d232 (diff) |
Use XDisplayName() when reporting errors (bug 8079).
Diffstat (limited to 'progs/xdemos/manywin.c')
-rw-r--r-- | progs/xdemos/manywin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/xdemos/manywin.c b/progs/xdemos/manywin.c index c9cca751341..cfea555210a 100644 --- a/progs/xdemos/manywin.c +++ b/progs/xdemos/manywin.c @@ -59,7 +59,7 @@ static GLuint TexObj = 0; static void Error(const char *display, const char *msg) { - fprintf(stderr, "Error on display %s - %s\n", display, msg); + fprintf(stderr, "Error on display %s - %s\n", XDisplayName(display), msg); exit(1); } |