diff options
author | Egbert Eich <eich@freedesktop.org> | 2015-03-31 09:14:26 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-05-12 09:50:04 -0700 |
commit | b536d56aef21739b6da44693bbf19d0e7541392d (patch) | |
tree | abf463001ea6d8b532c5257e4df344add4a8b516 | |
parent | 5af73f490870da9265eeb9b3ce59a2be026be0c8 (diff) |
Xephyr: Print default server display number if none is specified
Signed-off-by: Egbert Eich <eich@freedesktop.org>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | hw/kdrive/ephyr/hostx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kdrive/ephyr/hostx.c b/hw/kdrive/ephyr/hostx.c index 7163af03e..14c490442 100644 --- a/hw/kdrive/ephyr/hostx.c +++ b/hw/kdrive/ephyr/hostx.c @@ -177,7 +177,7 @@ hostx_set_win_title(KdScreenInfo *screen, const char *extra_text) memset(buf, 0, BUF_LEN + 1); snprintf(buf, BUF_LEN, "Xephyr on %s.%d %s", - HostX.server_dpy_name, + HostX.server_dpy_name ? HostX.server_dpy_name : ":0", scrpriv->mynum, (extra_text != NULL) ? extra_text : ""); xcb_icccm_set_wm_name(HostX.conn, |