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/glxinfo.c | |
parent | 5b35132b41427798e02a66a8e39583fffbe9d232 (diff) |
Use XDisplayName() when reporting errors (bug 8079).
Diffstat (limited to 'progs/xdemos/glxinfo.c')
-rw-r--r-- | progs/xdemos/glxinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/xdemos/glxinfo.c b/progs/xdemos/glxinfo.c index a1aca5ad31e..3e8e0be5203 100644 --- a/progs/xdemos/glxinfo.c +++ b/progs/xdemos/glxinfo.c @@ -939,7 +939,7 @@ main(int argc, char *argv[]) dpy = XOpenDisplay(displayName); if (!dpy) { - fprintf(stderr, "Error: unable to open display %s\n", displayName); + fprintf(stderr, "Error: unable to open display %s\n", XDisplayName(displayName)); return -1; } |