aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroga2008-02-13 12:09:47 +0000
committeroga2008-02-13 12:09:47 +0000
commit04d5150e6363273e7382d4a360e8e8baf3582fd6 (patch)
tree7cabd3fd264832d65655c6148a72712b39ebfa18
parente7878d7d79785acf84d2590ac32e4a8c35f1aff1 (diff)
downloadcwm-04d5150e6363273e7382d4a360e8e8baf3582fd6.tar.gz
Make cwm print the XDisplayName() if it fails to open the display,
instead of an error message that'll be gibberish to most people. from Gleydson Soares. Thanks! ok simon@.
-rw-r--r--calmwm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/calmwm.c b/calmwm.c
index b81d650..1633c30 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: calmwm.c,v 1.7 2008/01/16 11:39:20 oga Exp $
+ * $Id: calmwm.c,v 1.8 2008/02/13 12:09:47 oga Exp $
*/
#include "headers.h"
@@ -124,7 +124,8 @@ x_setup(char *display_name)
TAILQ_INIT(&Screenq);
if ((X_Dpy = XOpenDisplay(display_name)) == NULL)
- errx(1, "%s:%d XOpenDisplay()", __FILE__, __LINE__);
+ errx(1, "unable to open display \"%s\"",
+ XDisplayName(display_name));
XSetErrorHandler(x_errorhandler);