diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-04-04 14:17:04 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-04-04 14:17:04 +0000 |
commit | 4c7da861185080d15b3ff4301af4af0e85a71f93 (patch) | |
tree | 6761d8a2a5f14da80e98fae3a0a1569d3dcbaecd /hw/darwin | |
parent | fb6f61b50f1c701041680e49f6a406a6603f1577 (diff) |
Bug #5300: Fix missing spaces in the Build OS line in the log. (Egmont
Koblinger)
Diffstat (limited to 'hw/darwin')
-rw-r--r-- | hw/darwin/darwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/darwin/darwin.c b/hw/darwin/darwin.c index fe8cd2fd8..10afbaf78 100644 --- a/hw/darwin/darwin.c +++ b/hw/darwin/darwin.c @@ -29,7 +29,7 @@ * holders shall not be used in advertising or otherwise to promote the sale, * use or other dealings in this Software without prior written authorization. */ -/* $XdotOrg: xc/programs/Xserver/hw/darwin/darwin.c,v 1.6 2005/04/20 12:25:19 daniels Exp $ */ +/* $XdotOrg: xserver/xorg/hw/darwin/darwin.c,v 1.8 2005/07/03 08:53:38 daniels Exp $ */ /* $XFree86: xc/programs/Xserver/hw/darwin/darwin.c,v 1.55 2003/11/15 00:07:09 torrey Exp $ */ #include <X11/X.h> @@ -155,7 +155,7 @@ DarwinPrintBanner() ErrorF("\nRelease Date: %s\n", XF86_DATE); ErrorF("X Protocol Version %d, Revision %d, %s\n", X_PROTOCOL, X_PROTOCOL_REVISION, XORG_RELEASE ); - ErrorF("Build Operating System:%s%s\n", OSNAME, OSVENDOR); + ErrorF("Build Operating System: %s %s\n", OSNAME, OSVENDOR); #ifdef HAS_UTSNAME { struct utsname name; |